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.
Cos'è Github Gist logo fixer?
Github Gist logo fixer è un'estensione di Chrome sviluppata da https://hmemcpy.com, e la sua funzione principale è "Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Github Gist logo fixer
Scarica i file di estensione Github Gist logo fixer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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! Informazioni di Base sull'Estensione
| Nome | |
| ID | bgkfamnjiedcggijadfmjopnmidnkdad |
| URL Ufficiale | https://chromewebstore.google.com/detail/github-gist-logo-fixer/bgkfamnjiedcggijadfmjopnmidnkdad |
| Descrizione | Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist. |
| Dimensione del File | 4.12 KB |
| Conteggio Installazioni | 80 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2015-05-17 |
| Data di Pubblicazione | 2015-05-17 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | https://hmemcpy.com |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/hmemcpy/gisthub |
| Lingue Supportate | 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"
}
]
} | |