Google Drive Notifications

Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.

Cos'è Google Drive Notifications?

Google Drive Notifications è un'estensione di Chrome sviluppata da farahbaracat, e la sua funzione principale è "Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Google Drive Notifications

Scarica i file di estensione Google Drive Notifications in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        The badge displays the current number of viewers on the opened Google Doc and is updated automatically. It also comes with a notification sound.                    

Informazioni di Base sull'Estensione

Nome Google Drive Notifications Google Drive Notifications
ID igbodggmfmjehmnebcneffdbljecknmi
URL Ufficiale https://chromewebstore.google.com/detail/google-drive-notification/igbodggmfmjehmnebcneffdbljecknmi
Descrizione Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.
Dimensione del File 159 KB
Conteggio Installazioni 250
Versione Corrente 2.2
Ultimo Aggiornamento 2015-06-21
Data di Pubblicazione 2015-06-21
Sviluppatore farahbaracat
Tipo di Pagamento free
Lingue Supportate 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\/*"
    ]
}