GitHub Custom Tab Size

Make tab indented code more readable by allowing you to set a custom tab size

Wat is GitHub Custom Tab Size?

GitHub Custom Tab Size is een Chrome-extensie ontwikkeld door lukechilds, en de belangrijkste functie is "Make tab indented code more readable by allowing you to set a custom tab size".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie GitHub Custom Tab Size

Download GitHub Custom Tab Size-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Set custom tab size for code view on GitHub.com. The tab size setting is synced across all Chrome browsers you're logged into.                    

Basisinformatie over de Extensie

Naam GitHub Custom Tab Size GitHub Custom Tab Size
ID jcjfkmdkcaopkioccnpbhiemfcmpnghe
Officiële URL https://chromewebstore.google.com/detail/github-custom-tab-size/jcjfkmdkcaopkioccnpbhiemfcmpnghe
Beschrijving Make tab indented code more readable by allowing you to set a custom tab size
Bestandsgrootte 22.35 KB
Aantal Installaties 557
Huidige Versie 1.1.0
Laatst Bijgewerkt 2019-05-06
Publicatiedatum 2019-05-06
Beoordeling 4.30/5 Totaal 10 Beoordelingen
Ontwikkelaar lukechilds
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/lukechilds/github-custom-tab-size
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Custom Tab Size",
    "version": "1.1.0",
    "icons": {
        "256": "icon.png"
    },
    "description": "Make tab indented code more readable by allowing you to set a custom tab size",
    "homepage_url": "https:\/\/github.com\/lukechilds\/github-custom-tab-size",
    "manifest_version": 2,
    "minimum_chrome_version": "36",
    "browser_action": {
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*\/*",
                "https:\/\/gist.github.com\/*\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ]
}