Github Gist logo fixer

Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.

Was ist Github Gist logo fixer?

Github Gist logo fixer ist eine Chrome-Erweiterung, die von https://hmemcpy.com entwickelt wurde, und ihr Hauptmerkmal ist "Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.".

Erweiterungsscreenshots

screenshot

Github Gist logo fixer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Github Gist logo fixer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        A tiny bit of JavaScript to have clicking on the top left logo on Github's Gist page take back to github.

Solves a personal annoyance of mine, but I hope you'll find it useful as well.

Feel free to send me pull requests to improve it!                    

Grundlegende Informationen zur Erweiterung

Name Github Gist logo fixer Github Gist logo fixer
ID bgkfamnjiedcggijadfmjopnmidnkdad
Offizielle URL https://chromewebstore.google.com/detail/github-gist-logo-fixer/bgkfamnjiedcggijadfmjopnmidnkdad
Beschreibung Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.
Dateigröße 4.12 KB
Installationsanzahl 80
Aktuelle Version 1.1
Letztes Update 2015-05-17
Veröffentlichungsdatum 2015-05-17
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://hmemcpy.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/hmemcpy/gisthub
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Gist logo fixer",
    "description": "Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.",
    "version": "1.1",
    "permissions": [
        "https:\/\/gist.github.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "github-inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}