Google Drive Background Color Changer

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

Cos'è Google Drive Background Color Changer?

Google Drive Background Color Changer è un'estensione di Chrome sviluppata da zacharyboyd, e la sua funzione principale è "This extension will change the background color on documents in Google Drive".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Google Drive Background Color Changer

Scarica i file di estensione Google Drive Background Color Changer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Google Drive Background Color Changer Google Drive Background Color Changer
ID lglnebacjkielbdldlkppfdcmfpbgofo
URL Ufficiale https://chromewebstore.google.com/detail/google-drive-background-c/lglnebacjkielbdldlkppfdcmfpbgofo
Descrizione This extension will change the background color on documents in Google Drive
Dimensione del File 122 KB
Conteggio Installazioni 1,653
Versione Corrente 0.1
Ultimo Aggiornamento 2017-05-15
Data di Pubblicazione 2017-05-15
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore zacharyboyd
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
}