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.
Co je Github Gist logo fixer?
Github Gist logo fixer je rozšíření Chrome vyvinuté https://hmemcpy.com, a jeho hlavní funkcí je „Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Github Gist logo fixer
Stáhněte si soubory rozšíření Github Gist logo fixer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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!
Základní Informace o Rozšíření
Název | Github Gist logo fixer |
ID | bgkfamnjiedcggijadfmjopnmidnkdad |
Oficiální URL | https://chromewebstore.google.com/detail/github-gist-logo-fixer/bgkfamnjiedcggijadfmjopnmidnkdad |
Popis | Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist. |
Velikost souboru | 4.12 KB |
Počet instalací | 80 |
Aktuální Verze | 1.1 |
Poslední Aktualizace | 2015-05-17 |
Datum Vydání | 2015-05-17 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | https://hmemcpy.com |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/hmemcpy/gisthub |
Podporované Jazyky | 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" } ] } |