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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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