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\/*"
    ]
}