Google Drive Background Color Changer

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

Co je Google Drive Background Color Changer?

Google Drive Background Color Changer je rozšíření Chrome vyvinuté zacharyboyd, a jeho hlavní funkcí je „This extension will change the background color on documents in Google Drive“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Google Drive Background Color Changer

Stáhněte si soubory rozšíření Google Drive Background Color Changer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Google Drive Background Color Changer Google Drive Background Color Changer
ID lglnebacjkielbdldlkppfdcmfpbgofo
Oficiální URL https://chromewebstore.google.com/detail/google-drive-background-c/lglnebacjkielbdldlkppfdcmfpbgofo
Popis This extension will change the background color on documents in Google Drive
Velikost souboru 122 KB
Počet instalací 1,653
Aktuální Verze 0.1
Poslední Aktualizace 2017-05-15
Datum Vydání 2017-05-15
Hodnocení 5.00/5 Celkem 6 Hodnocení
Vývojář zacharyboyd
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
}