Google Drive Notifications
Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.
Google Drive Notifications क्या है?
Google Drive Notifications farahbaracat द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Awaiting for new viewers on your Google Doc? Save your time, we will do that for you."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google Drive Notifications एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The badge displays the current number of viewers on the opened Google Doc and is updated automatically. It also comes with a notification sound.
एक्सटेंशन की मूल जानकारी
नाम | Google Drive Notifications |
ID | igbodggmfmjehmnebcneffdbljecknmi |
आधिकारिक URL | https://chromewebstore.google.com/detail/google-drive-notification/igbodggmfmjehmnebcneffdbljecknmi |
विवरण | Awaiting for new viewers on your Google Doc? Save your time, we will do that for you. |
फ़ाइल का आकार | 159 KB |
स्थापना संख्या | 250 |
वर्तमान संस्करण | 2.2 |
अंतिम अपडेट | 2015-06-21 |
प्रकाशन तिथि | 2015-06-21 |
डेवलपर | farahbaracat |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Drive Notifications", "short_name": "Google Drive", "description": "Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.", "version": "2.2", "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/document\/d\/*" ], "js": [ "jquery-2.1.4.js", "ContentScript.js" ] } ], "browser_action": { "default_icon": "drive1.png", "default_popup": "popup.html", "default_title": "" }, "background": { "scripts": [ "jquery-2.1.4.js", "background.js" ] }, "permissions": [ "activeTab", "tabs", "https:\/\/ajax.googleapis.com\/", "https:\/\/docs.google.com\/document\/d\/*" ] } |