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.

Wat is Github Gist logo fixer?

Github Gist logo fixer is een Chrome-extensie ontwikkeld door https://hmemcpy.com, en de belangrijkste functie is "Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Github Gist logo fixer

Download Github Gist logo fixer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Github Gist logo fixer Github Gist logo fixer
ID bgkfamnjiedcggijadfmjopnmidnkdad
Officiële URL https://chromewebstore.google.com/detail/github-gist-logo-fixer/bgkfamnjiedcggijadfmjopnmidnkdad
Beschrijving Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.
Bestandsgrootte 4.12 KB
Aantal Installaties 80
Huidige Versie 1.1
Laatst Bijgewerkt 2015-05-17
Publicatiedatum 2015-05-17
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://hmemcpy.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/hmemcpy/gisthub
Ondersteunde Talen 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"
        }
    ]
}