Google Drive Notifications
Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.
¿Qué es Google Drive Notifications?
Google Drive Notifications es una extensión de Chrome desarrollada por farahbaracat, y su función principal es "Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Google Drive Notifications
Descarga archivos de extensión Google Drive Notifications en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
The badge displays the current number of viewers on the opened Google Doc and is updated automatically. It also comes with a notification sound.
Información Básica de la Extensión
Nombre | Google Drive Notifications |
ID | igbodggmfmjehmnebcneffdbljecknmi |
URL Oficial | https://chromewebstore.google.com/detail/google-drive-notification/igbodggmfmjehmnebcneffdbljecknmi |
Descripción | Awaiting for new viewers on your Google Doc? Save your time, we will do that for you. |
Tamaño del Archivo | 159 KB |
Cantidad de Instalaciones | 250 |
Versión Actual | 2.2 |
Última Actualización | 2015-06-21 |
Fecha de Publicación | 2015-06-21 |
Desarrollador | farahbaracat |
Tipo de Pago | free |
Idiomas Soportados | 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\/*" ] } |