Google Drive Notifications
Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.
O que é Google Drive Notifications?
Google Drive Notifications é uma extensão do Chrome desenvolvida por farahbaracat, e sua principal característica é "Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Google Drive Notifications
Baixe arquivos de extensão Google Drive Notifications no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
The badge displays the current number of viewers on the opened Google Doc and is updated automatically. It also comes with a notification sound.
Informações Básicas da Extensão
Nome | Google Drive Notifications |
ID | igbodggmfmjehmnebcneffdbljecknmi |
URL Oficial | https://chromewebstore.google.com/detail/google-drive-notification/igbodggmfmjehmnebcneffdbljecknmi |
Descrição | Awaiting for new viewers on your Google Doc? Save your time, we will do that for you. |
Tamanho do Arquivo | 159 KB |
Contagem de Instalações | 250 |
Versão Atual | 2.2 |
Última Atualização | 2015-06-21 |
Data de Publicação | 2015-06-21 |
Desenvolvedor | farahbaracat |
Tipo de Pagamento | free |
Idiomas Suportados | 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\/*" ] } |