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はzacharyboydによって開発されたChromeの拡張機能で、その主な機能は「This extension will change the background color on documents in Google Drive」です。

拡張機能のスクリーンショット

screenshot

Google Drive Background Color Changer拡張機能のCRXファイルをダウンロード

Google Drive Background Color Changer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
}