Google Drive Notifications

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

Vad är Google Drive Notifications?

Google Drive Notifications är en Chrome-tillägg utvecklad av farahbaracat, och dess huvudfunktion är "Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.".

Tilläggsskärmbilder

screenshot

Ladda ner Google Drive Notifications-förlängningens CRX-fil

Ladda ner Google Drive Notifications-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Google Drive Notifications Google Drive Notifications
ID igbodggmfmjehmnebcneffdbljecknmi
Officiell webbadress https://chromewebstore.google.com/detail/google-drive-notification/igbodggmfmjehmnebcneffdbljecknmi
Beskrivning Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.
Filstorlek 159 KB
Antal Installationer 250
Aktuell Version 2.2
Senast Uppdaterad 2015-06-21
Publiceringsdatum 2015-06-21
Utvecklare farahbaracat
Betalningssätt free
Stödda Språk 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\/*"
    ]
}