Google Drive Background Color Changer

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

ما هو Google Drive Background Color Changer؟

Google Drive Background Color Changer هو إضافة Chrome تم تطويرها بواسطة zacharyboyd، والميزة الرئيسية لها هي "This extension will change the background color on documents in Google Drive".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Google Drive Background Color Changer

قم بتنزيل ملفات الامتداد Google Drive Background Color Changer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم Google Drive Background Color Changer Google Drive Background Color Changer
ID lglnebacjkielbdldlkppfdcmfpbgofo
عنوان URL الرسمي https://chromewebstore.google.com/detail/google-drive-background-c/lglnebacjkielbdldlkppfdcmfpbgofo
الوصف This extension will change the background color on documents in Google Drive
حجم الملف 122 KB
عدد التثبيتات 1,653
النسخة الحالية 0.1
آخر تحديث 2017-05-15
تاريخ النشر 2017-05-15
تقييم 5.00/5 مجموع تقييمات 6
المطور zacharyboyd
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
}