Github Tab Size Manager

Use this extension to view git files with tab size specified

Co je Github Tab Size Manager?

Github Tab Size Manager je rozšíření Chrome vyvinuté Namandeep Singh Chugh, a jeho hlavní funkcí je „Use this extension to view git files with tab size specified“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Github Tab Size Manager

Stáhněte si soubory rozšíření Github Tab Size Manager ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Change tab size (from options menu) while viewing code on github.com or gist.github.com                    

Základní Informace o Rozšíření

Název Github Tab Size Manager Github Tab Size Manager
ID enjegllgfhbkappebfdbgheefocllglo
Oficiální URL https://chromewebstore.google.com/detail/github-tab-size-manager/enjegllgfhbkappebfdbgheefocllglo
Popis Use this extension to view git files with tab size specified
Velikost souboru 506 KB
Počet instalací 17
Aktuální Verze 1.5
Poslední Aktualizace 2017-03-17
Datum Vydání 2017-03-17
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Namandeep Singh Chugh
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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'"
}