Google Drive Notifications

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

Τι είναι το Google Drive Notifications;

Το Google Drive Notifications είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον farahbaracat, και η κύρια λειτουργία του είναι "Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Google Drive Notifications

Λήψη αρχείων επέκτασης Google Drive Notifications σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Βασικές Πληροφορίες Επέκτασης

Όνομα Google Drive Notifications Google Drive Notifications
ID igbodggmfmjehmnebcneffdbljecknmi
Επίσημο URL https://chromewebstore.google.com/detail/google-drive-notification/igbodggmfmjehmnebcneffdbljecknmi
Περιγραφή Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.
Μέγεθος Αρχείου 159 KB
Αριθμός Εγκαταστάσεων 250
Τρέχουσα Έκδοση 2.2
Τελευταία Ενημέρωση 2015-06-21
Ημερομηνία Δημοσίευσης 2015-06-21
Προγραμματιστής farahbaracat
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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\/*"
    ]
}