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