Google Drive Background Color Changer
This extension will change the background color on documents in Google Drive
What is Google Drive Background Color Changer?
Google Drive Background Color Changer is a Chrome extension developed by zacharyboyd, and its main feature is "This extension will change the background color on documents in Google Drive".
Extension Screenshots
Download Google Drive Background Color Changer Extension CRX File
Download Google Drive Background Color Changer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This Chrome Extension will change the background color on documents in Google Drive.
Extension Basic Information
Name | Google Drive Background Color Changer |
ID | lglnebacjkielbdldlkppfdcmfpbgofo |
Official URL | https://chromewebstore.google.com/detail/google-drive-background-c/lglnebacjkielbdldlkppfdcmfpbgofo |
Description | This extension will change the background color on documents in Google Drive |
File Size | 122 KB |
Installation Count | 1,653 |
Current Version | 0.1 |
Last Updated | 2017-05-15 |
Publish Date | 2017-05-15 |
Rating | 5.00/5 Total 6 Ratings |
Developer | zacharyboyd |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } |