Normal Tab Size

Set the default tab-size CSS property to 2 in every page (especially in GitHub)

Qu'est-ce que Normal Tab Size ?

Normal Tab Size est une extension Chrome développée par fatalis.erratum, et sa fonction principale est "Set the default tab-size CSS property to 2 in every page (especially in GitHub)".

Télécharger le fichier CRX de l'extension Normal Tab Size

Téléchargez les fichiers d'extension Normal Tab Size au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Adds a user stylesheet that applies a `tab-size: 2` rule to the root element in every page.                    

Informations de Base sur l'Extension

Nom Normal Tab Size Normal Tab Size
ID kjjblpbmpgkbfnonlanolpcmlolafamn
URL Officiel https://chrome.google.com/webstore/detail/normal-tab-size/kjjblpbmpgkbfnonlanolpcmlolafamn
Description Set the default tab-size CSS property to 2 in every page (especially in GitHub)
Taille du Fichier 39.03 KB
Nombre d'Installations 19
Version Actuelle 1.0.1
Dernière Mise à Jour 2017-05-14
Date de Publication 2017-05-14
Évaluation 5.00/5 Total 1 Évaluations
Développeur fatalis.erratum
Type de Paiement free
Site Web de l'Extension https://github.com/slikts/normaltabs
URL de la Page d'Aide https://github.com/slikts/normaltabs/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Normal Tab Size",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Set the default tab-size CSS property to 2 in every page (especially in GitHub)",
    "homepage_url": "https:\/\/github.com\/slikts\/normaltabs",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "css": [
                "src\/inject.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "all_frames": true,
            "css": [
                "src\/github.css"
            ]
        }
    ]
}