Google Drive Notifications

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

Qu'est-ce que Google Drive Notifications ?

Google Drive Notifications est une extension Chrome développée par farahbaracat, et sa fonction principale est "Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Google Drive Notifications

Téléchargez les fichiers d'extension Google Drive Notifications au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Google Drive Notifications Google Drive Notifications
ID igbodggmfmjehmnebcneffdbljecknmi
URL Officiel https://chromewebstore.google.com/detail/google-drive-notification/igbodggmfmjehmnebcneffdbljecknmi
Description Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.
Taille du Fichier 159 KB
Nombre d'Installations 250
Version Actuelle 2.2
Dernière Mise à Jour 2015-06-21
Date de Publication 2015-06-21
Développeur farahbaracat
Type de Paiement free
Langues Prises en Charge 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\/*"
    ]
}