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.
Qu'est-ce que Github Gist logo fixer ?
Github Gist logo fixer est une extension Chrome développée par https://hmemcpy.com, et sa fonction principale est "Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Github Gist logo fixer
Téléchargez les fichiers d'extension Github Gist logo fixer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | Github Gist logo fixer |
ID | bgkfamnjiedcggijadfmjopnmidnkdad |
URL Officiel | https://chromewebstore.google.com/detail/github-gist-logo-fixer/bgkfamnjiedcggijadfmjopnmidnkdad |
Description | Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist. |
Taille du Fichier | 4.12 KB |
Nombre d'Installations | 80 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2015-05-17 |
Date de Publication | 2015-05-17 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://hmemcpy.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/hmemcpy/gisthub |
Langues Prises en Charge | 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" } ] } |