Google Drive Background Color Changer
This extension will change the background color on documents in Google Drive
Wat is Google Drive Background Color Changer?
Google Drive Background Color Changer is een Chrome-extensie ontwikkeld door zacharyboyd, en de belangrijkste functie is "This extension will change the background color on documents in Google Drive".
Extensie Screenshots
Download het CRX-bestand van de extensie Google Drive Background Color Changer
Download Google Drive Background Color Changer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This Chrome Extension will change the background color on documents in Google Drive.
Basisinformatie over de Extensie
Naam | Google Drive Background Color Changer |
ID | lglnebacjkielbdldlkppfdcmfpbgofo |
Officiële URL | https://chromewebstore.google.com/detail/google-drive-background-c/lglnebacjkielbdldlkppfdcmfpbgofo |
Beschrijving | This extension will change the background color on documents in Google Drive |
Bestandsgrootte | 122 KB |
Aantal Installaties | 1,653 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2017-05-15 |
Publicatiedatum | 2017-05-15 |
Beoordeling | 5.00/5 Totaal 6 Beoordelingen |
Ontwikkelaar | zacharyboyd |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } |