Google Drive Background Color Changer

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

Google Drive Background Color Changer là gì?

Google Drive Background Color Changer là một tiện ích mở rộng Chrome được phát triển bởi zacharyboyd, và tính năng chính của nó là "This extension will change the background color on documents in Google Drive".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Drive Background Color Changer

Tải xuống các tệp mở rộng Google Drive Background Color Changer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Drive Background Color Changer Google Drive Background Color Changer
ID lglnebacjkielbdldlkppfdcmfpbgofo
URL Chính Thức https://chromewebstore.google.com/detail/google-drive-background-c/lglnebacjkielbdldlkppfdcmfpbgofo
Mô tả This extension will change the background color on documents in Google Drive
Kích Thước Tệp 122 KB
Số Lần Cài Đặt 1,653
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2017-05-15
Ngày Phát Hành 2017-05-15
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển zacharyboyd
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}