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.
Hvad er Github Gist logo fixer?
Github Gist logo fixer er en Chrome-udvidelse udviklet af https://hmemcpy.com, og dens hovedfunktion er "Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.".
Udvidelsesskærmbilleder
Download Github Gist logo fixer-udvidelses-CRX-fil
Download Github Gist logo fixer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Github Gist logo fixer |
ID | bgkfamnjiedcggijadfmjopnmidnkdad |
Officiel URL | https://chromewebstore.google.com/detail/github-gist-logo-fixer/bgkfamnjiedcggijadfmjopnmidnkdad |
Beskrivelse | Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist. |
Filstørrelse | 4.12 KB |
Antal Installationer | 80 |
Nuværende Version | 1.1 |
Senest Opdateret | 2015-05-17 |
Udgivelsesdato | 2015-05-17 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | https://hmemcpy.com |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/hmemcpy/gisthub |
Understøttede Sprog | 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" } ] } |