Google Drive Background Color Changer
This extension will change the background color on documents in Google Drive
Was ist Google Drive Background Color Changer?
Google Drive Background Color Changer ist eine Chrome-Erweiterung, die von zacharyboyd entwickelt wurde, und ihr Hauptmerkmal ist "This extension will change the background color on documents in Google Drive".
Erweiterungsscreenshots
Google Drive Background Color Changer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Google Drive Background Color Changer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This Chrome Extension will change the background color on documents in Google Drive.
Grundlegende Informationen zur Erweiterung
Name | Google Drive Background Color Changer |
ID | lglnebacjkielbdldlkppfdcmfpbgofo |
Offizielle URL | https://chromewebstore.google.com/detail/google-drive-background-c/lglnebacjkielbdldlkppfdcmfpbgofo |
Beschreibung | This extension will change the background color on documents in Google Drive |
Dateigröße | 122 KB |
Installationsanzahl | 1,653 |
Aktuelle Version | 0.1 |
Letztes Update | 2017-05-15 |
Veröffentlichungsdatum | 2017-05-15 |
Bewertung | 5.00/5 Insgesamt 6 Bewertungen |
Entwickler | zacharyboyd |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } |