Google Drive Background Color Changer
This extension will change the background color on documents in Google Drive
Vad är Google Drive Background Color Changer?
Google Drive Background Color Changer är en Chrome-tillägg utvecklad av zacharyboyd, och dess huvudfunktion är "This extension will change the background color on documents in Google Drive".
Tilläggsskärmbilder
Ladda ner Google Drive Background Color Changer-förlängningens CRX-fil
Ladda ner Google Drive Background Color Changer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This Chrome Extension will change the background color on documents in Google Drive.
Grundläggande Information om Tillägg
Namn | Google Drive Background Color Changer |
ID | lglnebacjkielbdldlkppfdcmfpbgofo |
Officiell webbadress | https://chromewebstore.google.com/detail/google-drive-background-c/lglnebacjkielbdldlkppfdcmfpbgofo |
Beskrivning | This extension will change the background color on documents in Google Drive |
Filstorlek | 122 KB |
Antal Installationer | 1,653 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2017-05-15 |
Publiceringsdatum | 2017-05-15 |
Betyg | 5.00/5 Totalt 6 Betyg |
Utvecklare | zacharyboyd |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } |