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是由farahbaracat開發的Chrome擴展程式,該擴展的主要功能是“Awaiting for new viewers on your Google Doc? Save your time, we will do that for you.”。
擴展截圖
下載Google Drive Notifications擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | igbodggmfmjehmnebcneffdbljecknmi |
| 官方網址 | 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\/*"
]
} | |