Google Drive Background Color Changer

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

Co to jest Google Drive Background Color Changer?

Google Drive Background Color Changer to rozszerzenie Chrome opracowane przez zacharyboyd, a jego główną funkcją jest „This extension will change the background color on documents in Google Drive”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Google Drive Background Color Changer

Pobierz pliki rozszerzeń Google Drive Background Color Changer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Google Drive Background Color Changer Google Drive Background Color Changer
ID lglnebacjkielbdldlkppfdcmfpbgofo
Oficjalny URL https://chromewebstore.google.com/detail/google-drive-background-c/lglnebacjkielbdldlkppfdcmfpbgofo
Opis This extension will change the background color on documents in Google Drive
Rozmiar pliku 122 KB
Liczba instalacji 1,653
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2017-05-15
Data Publikacji 2017-05-15
Ocena 5.00/5 Łącznie 6 Oceny
Deweloper zacharyboyd
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
}