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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will change the background color on documents in Google Drive"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google Drive Background Color Changer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This Chrome Extension will change the background color on documents in Google Drive.
एक्सटेंशन की मूल जानकारी
नाम | |
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" } |