Skip to content

Instantly share code, notes, and snippets.

@iam-medvedev
Last active September 12, 2023 08:44
Show Gist options
  • Save iam-medvedev/2cdf4d78e4cbe41bfefe8804e1697da0 to your computer and use it in GitHub Desktop.
Save iam-medvedev/2cdf4d78e4cbe41bfefe8804e1697da0 to your computer and use it in GitHub Desktop.

Revisions

  1. iam-medvedev renamed this gist Sep 12, 2023. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. iam-medvedev created this gist Sep 12, 2023.
    12 changes: 12 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,12 @@
    // ==UserScript==
    // @name Github dashboard styles
    // @version 0.1
    // @description Github dashboard styles
    // @match https://github.com/dashboard-feed
    // @icon https://www.google.com/s2/favicons?sz=64&domain=github.com
    // @grant GM_addStyle
    // ==/UserScript==
    (function() {
    const css = `.application-main { max-width: 676px; margin: 0 auto; }`;
    GM_addStyle(css);
    })();