Google Drive Notifications
Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.
Was ist Google Drive Notifications?
Google Drive Notifications ist eine Chrome-Erweiterung, die von farahbaracat entwickelt wurde, und ihr Hauptmerkmal ist "Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.".
Erweiterungsscreenshots
Google Drive Notifications-Erweiterungs-CRX-Datei herunterladen
Laden Sie Google Drive Notifications-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
The badge displays the current number of viewers on the opened Google Doc and is updated automatically. It also comes with a notification sound.
Grundlegende Informationen zur Erweiterung
Name | Google Drive Notifications |
ID | igbodggmfmjehmnebcneffdbljecknmi |
Offizielle URL | https://chromewebstore.google.com/detail/google-drive-notification/igbodggmfmjehmnebcneffdbljecknmi |
Beschreibung | Awaiting for new viewers on your Google Doc? Save your time, we will do that for you. |
Dateigröße | 159 KB |
Installationsanzahl | 250 |
Aktuelle Version | 2.2 |
Letztes Update | 2015-06-21 |
Veröffentlichungsdatum | 2015-06-21 |
Entwickler | farahbaracat |
Zahlungsart | free |
Unterstützte Sprachen | 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\/*" ] } |