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