Google Drive Background Color Changer

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

Apa itu Google Drive Background Color Changer?

Google Drive Background Color Changer adalah ekstensi Chrome yang dikembangkan oleh zacharyboyd, dan fitur utamanya adalah "This extension will change the background color on documents in Google Drive".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Google Drive Background Color Changer

Unduh file ekstensi Google Drive Background Color Changer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Google Drive Background Color Changer Google Drive Background Color Changer
ID lglnebacjkielbdldlkppfdcmfpbgofo
URL Resmi https://chromewebstore.google.com/detail/google-drive-background-c/lglnebacjkielbdldlkppfdcmfpbgofo
Deskripsi This extension will change the background color on documents in Google Drive
Ukuran File 122 KB
Jumlah Instalasi 1,653
Versi Saat Ini 0.1
Terakhir Diperbarui 2017-05-15
Tanggal Publikasi 2017-05-15
Penilaian 5.00/5 Total 6 Penilaian
Pengembang zacharyboyd
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
}