Hide whitespaces GitHub

Always hide whitespaces in GitHub

Qu'est-ce que Hide whitespaces GitHub ?

Hide whitespaces GitHub est une extension Chrome développée par Arnaud Barré, et sa fonction principale est "Always hide whitespaces in GitHub".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Hide whitespaces GitHub

Téléchargez les fichiers d'extension Hide whitespaces GitHub 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

                        When navigating to the files tab on pull request reviews, append the url with ?w=1 to enable the  "hide whitespace changes" option                    

Informations de Base sur l'Extension

Nom Hide whitespaces GitHub Hide whitespaces GitHub
ID nafhbcekbgodfnjpnobmbiajjpgmibnc
URL Officiel https://chromewebstore.google.com/detail/hide-whitespaces-github/nafhbcekbgodfnjpnobmbiajjpgmibnc
Description Always hide whitespaces in GitHub
Taille du Fichier 10.26 KB
Nombre d'Installations 57
Version Actuelle 0.6.0
Dernière Mise à Jour 2022-08-09
Date de Publication 2020-06-08
Évaluation 5.00/5 Total 2 Évaluations
Développeur Arnaud Barré
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/ArnaudBarre/hide-whitespaces-github
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hide whitespaces GitHub",
    "version": "0.6.0",
    "description": "Always hide whitespaces in GitHub",
    "permissions": [
        "https:\/\/github.com\/**"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/**"
            ],
            "run_at": "document_start",
            "js": [
                "hide-whitespaces.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png"
    }
}