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”。
擴展截圖
下載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 |
ID | lglnebacjkielbdldlkppfdcmfpbgofo |
官方網址 | 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" } |