Chrome Watcher
Chrome watcher is a website watcher for chrome.
什么是Chrome Watcher?
Chrome Watcher是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Chrome watcher is a website watcher for chrome.”。
扩展截图
下载Chrome Watcher扩展crx文件
下载Chrome Watcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Google chrome extension for watching website changes.
Currently supports watching by
- HTML ID
- HTML Class
- HTML Tag
- Regex Pattern
Currently only supports push time of 30 min.
== Future support ==
Allow changing push time.
If you have any additional requests, post it here or in our repo. (https://github.com/jame-sparker/chrome-watcher)
Looking for additional developers. 扩展基本信息
| 名称 | |
| ID | hohdamhhecpldfefggjafbjnbbmcalgn |
| 官方URL | https://chromewebstore.google.com/detail/chrome-watcher/hohdamhhecpldfefggjafbjnbbmcalgn |
| 简介 | Chrome watcher is a website watcher for chrome. |
| 文件大小 | 49.48 KB |
| 安装次数 | 100 |
| 当前版本 | 0.1.0 |
| 更新时间 | 2019-08-27 |
| 上架时间 | 2019-08-25 |
| 评分 | 4.00/5 共1次评分 |
| 开发者 | Unknown |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Chrome Watcher",
"version": "0.1.0",
"description": "Chrome watcher is a website watcher for chrome.",
"permissions": [
"storage",
"alarms",
"*:\/\/*\/",
"tabs"
],
"options_page": "options\/options.html",
"background": {
"scripts": [
"background\/interval-handler.js",
"background\/request-manager.js",
"background\/requestor.js",
"background\/background.js",
"background\/badge-manager.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "images\/path16.png",
"32": "images\/path32.png",
"48": "images\/path48.png",
"128": "images\/path128.png"
}
},
"icons": {
"16": "images\/path16.png",
"32": "images\/path32.png",
"48": "images\/path48.png",
"128": "images\/path128.png"
},
"manifest_version": 2
} | |