Google Drive Background Color Changer

This extension will change the background color on documents in Google Drive

Qu'est-ce que Google Drive Background Color Changer ?

Google Drive Background Color Changer est une extension Chrome développée par zacharyboyd, et sa fonction principale est "This extension will change the background color on documents in Google Drive".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Google Drive Background Color Changer

Téléchargez les fichiers d'extension Google Drive Background Color Changer 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

                        This Chrome Extension will change the background color on documents in Google Drive.                    

Informations de Base sur l'Extension

Nom Google Drive Background Color Changer Google Drive Background Color Changer
ID lglnebacjkielbdldlkppfdcmfpbgofo
URL Officiel https://chromewebstore.google.com/detail/google-drive-background-c/lglnebacjkielbdldlkppfdcmfpbgofo
Description This extension will change the background color on documents in Google Drive
Taille du Fichier 122 KB
Nombre d'Installations 1,653
Version Actuelle 0.1
Dernière Mise à Jour 2017-05-15
Date de Publication 2017-05-15
Évaluation 5.00/5 Total 6 Évaluations
Développeur zacharyboyd
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Drive Background Color Changer",
    "version": "0.1",
    "browser_action": {
        "default_icon": "icons\/icon16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/docs.google.com\/*",
        "http:\/\/docs.google.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/docs.google.com\/*"
            ],
            "js": [
                "drive-color-changer.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "description": "This extension will change the background color on documents in Google Drive"
}