Github Tab Change
change tab-size in github
Cos'è Github Tab Change?
Github Tab Change è un'estensione di Chrome sviluppata da shogo82148, e la sua funzione principale è "change tab-size in github".
Scarica il file CRX dell'estensione Github Tab Change
Scarica i file di estensione Github Tab Change 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
change tab-size in github.com Informazioni di Base sull'Estensione
| Nome | |
| ID | ljioaacdegnnenakodladamafjodehnd |
| URL Ufficiale | https://chrome.google.com/webstore/detail/github-tab-change/ljioaacdegnnenakodladamafjodehnd |
| Descrizione | change tab-size in github |
| Dimensione del File | 11.12 KB |
| Conteggio Installazioni | 25 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2014-02-09 |
| Data di Pubblicazione | 2014-02-09 |
| Valutazione | 4.00/5 Totale 1 Valutazioni |
| Sviluppatore | shogo82148 |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Github Tab Change",
"version": "1.0",
"description": "change tab-size in github",
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"permissions": [
"tabs"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"tabchange.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_icon": "icon-19.png",
"default_title": "Github Tab Change",
"default_popup": "popup.html"
},
"web_accessible_resources": [
"tab-size-2.css",
"tab-size-4.css",
"tab-size-8.css"
]
} | |