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.

Vad är Github Gist logo fixer?

Github Gist logo fixer är en Chrome-tillägg utvecklad av https://hmemcpy.com, och dess huvudfunktion är "Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.".

Tilläggsskärmbilder

screenshot

Ladda ner Github Gist logo fixer-förlängningens CRX-fil

Ladda ner Github Gist logo fixer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Github Gist logo fixer Github Gist logo fixer
ID bgkfamnjiedcggijadfmjopnmidnkdad
Officiell webbadress https://chromewebstore.google.com/detail/github-gist-logo-fixer/bgkfamnjiedcggijadfmjopnmidnkdad
Beskrivning Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.
Filstorlek 4.12 KB
Antal Installationer 80
Aktuell Version 1.1
Senast Uppdaterad 2015-05-17
Publiceringsdatum 2015-05-17
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://hmemcpy.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/hmemcpy/gisthub
Stödda Språk 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"
        }
    ]
}