Github Gist Compact View

Add custom styles to Sergi0's Gist pages

Από την 13/03/2025. Δείτε την τελευταία έκδοση.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Github Gist Compact View
// @namespace    http://tampermonkey.net/
// @version      1
// @description  Add custom styles to Sergi0's Gist pages
// @author       Sergi0
// @match        https://gist.github.com/*
// @grant        GM_addStyle
// @icon         https://gist.github.com/favicon.ico
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    GM_addStyle(`
         /* main container */
        .gist-snippet {margin-bottom:2px!important;}
         /* icon */
        #gist-pjax-container > div > div > div.col-9.col-md-9.col-12 > div > div.gist-snippet-meta.d-flex.flex-lg-row.flex-column.width-full > div > div.d-lg-inline-block.d-none.v-align-top.mt-1 > a{display:none!important;}
        /* code */
        .gist-snippet .js-gist-file-update-container.js-task-list-container {display: none;}
        /* links */
        #gist-pjax-container > div > div > div.col-9.col-md-9.col-12 > div > div.gist-snippet-meta.d-flex.flex-lg-row.flex-column.width-full > div > div.d-inline-block.px-lg-2.px-0 > span:nth-child(1){display:none;}
        /* date */
        #gist-pjax-container > div > div > div.col-9.col-md-9.col-12 > div > div.gist-snippet-meta.d-flex.flex-lg-row.flex-column.width-full > div > div.d-inline-block.px-lg-2.px-0 > div {display:none}
        /* font size */
        #gist-pjax-container > div > div > div.col-9.col-md-9.col-12 > div > div.gist-snippet-meta.d-flex.flex-lg-row.flex-column.width-full > div > div.d-inline-block.px-lg-2.px-0 > span.f6.color-fg-muted{font-size:14px!important;}
    `);
})();