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 |
官方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" } |