Google Drive Background Color Changer

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

Hvad er Google Drive Background Color Changer?

Google Drive Background Color Changer er en Chrome-udvidelse udviklet af zacharyboyd, og dens hovedfunktion er "This extension will change the background color on documents in Google Drive".

Udvidelsesskærmbilleder

screenshot

Download Google Drive Background Color Changer-udvidelses-CRX-fil

Download Google Drive Background Color Changer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Google Drive Background Color Changer Google Drive Background Color Changer
ID lglnebacjkielbdldlkppfdcmfpbgofo
Officiel URL https://chromewebstore.google.com/detail/google-drive-background-c/lglnebacjkielbdldlkppfdcmfpbgofo
Beskrivelse This extension will change the background color on documents in Google Drive
Filstørrelse 122 KB
Antal Installationer 1,653
Nuværende Version 0.1
Senest Opdateret 2017-05-15
Udgivelsesdato 2017-05-15
Bedømmelse 5.00/5 Samlet 6 Bedømmelser
Udvikler zacharyboyd
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
}