Github Tab Size Manager

Use this extension to view git files with tab size specified

Co to jest Github Tab Size Manager?

Github Tab Size Manager to rozszerzenie Chrome opracowane przez Namandeep Singh Chugh, a jego główną funkcją jest „Use this extension to view git files with tab size specified”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Github Tab Size Manager

Pobierz pliki rozszerzeń Github Tab Size Manager w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Github Tab Size Manager Github Tab Size Manager
ID enjegllgfhbkappebfdbgheefocllglo
Oficjalny URL https://chromewebstore.google.com/detail/github-tab-size-manager/enjegllgfhbkappebfdbgheefocllglo
Opis Use this extension to view git files with tab size specified
Rozmiar pliku 506 KB
Liczba instalacji 17
Aktualna Wersja 1.5
Ostatnia Aktualizacja 2017-03-17
Data Publikacji 2017-03-17
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Namandeep Singh Chugh
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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'"
}