Github Tab Size Manager

Use this extension to view git files with tab size specified

Cos'è Github Tab Size Manager?

Github Tab Size Manager è un'estensione di Chrome sviluppata da Namandeep Singh Chugh, e la sua funzione principale è "Use this extension to view git files with tab size specified".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Github Tab Size Manager

Scarica i file di estensione Github Tab Size Manager 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 (from options menu) while viewing code on github.com or gist.github.com                    

Informazioni di Base sull'Estensione

Nome Github Tab Size Manager Github Tab Size Manager
ID enjegllgfhbkappebfdbgheefocllglo
URL Ufficiale https://chromewebstore.google.com/detail/github-tab-size-manager/enjegllgfhbkappebfdbgheefocllglo
Descrizione Use this extension to view git files with tab size specified
Dimensione del File 506 KB
Conteggio Installazioni 17
Versione Corrente 1.5
Ultimo Aggiornamento 2017-03-17
Data di Pubblicazione 2017-03-17
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Namandeep Singh Chugh
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Tab Size Manager",
    "version": "1.5",
    "manifest_version": 2,
    "icons": {
        "128": "images\/icon.png"
    },
    "options_page": "options.html",
    "description": "Use this extension to view git files with tab size specified",
    "permissions": [
        "storage",
        "*:\/\/gist.github.com\/*",
        "*:\/\/github.com\/*",
        "tabs",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*",
                "*:\/\/gist.github.com\/*"
            ],
            "js": [
                "js\/jquery-3.1.1.min.js",
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}