Google Drive Notifications

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

Google Drive Notifications là gì?

Google Drive Notifications là một tiện ích mở rộng Chrome được phát triển bởi farahbaracat, và tính năng chính của nó là "Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Drive Notifications

Tải xuống các tệp mở rộng Google Drive Notifications dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Drive Notifications Google Drive Notifications
ID igbodggmfmjehmnebcneffdbljecknmi
URL Chính Thức https://chromewebstore.google.com/detail/google-drive-notification/igbodggmfmjehmnebcneffdbljecknmi
Mô tả Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.
Kích Thước Tệp 159 KB
Số Lần Cài Đặt 250
Phiên Bản Hiện Tại 2.2
Cập Nhật Lần Cuối 2015-06-21
Ngày Phát Hành 2015-06-21
Nhà Phát Triển farahbaracat
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}