DOM Auto Refresh
Automatically refresh page when DOM has changed
什么是DOM Auto Refresh?
DOM Auto Refresh是由kknordbo开发的Chrome扩展程序,该扩展的主要功能是“Automatically refresh page when DOM has changed”。
扩展截图
下载DOM Auto Refresh扩展crx文件
下载DOM Auto Refresh扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatically refresh the page when there has been a change to DOM (Document Object Model). For instance, it will refresh a page if a "click to refresh" popup appears. A useful tool for keeping content up to date without any user interaction. Can also set an interval for how often the page should be refreshed. 扩展基本信息
| 名称 | |
| ID | ocmlgbpgpklpjaegeemejpafhbijgdkc |
| 官方URL | https://chrome.google.com/webstore/detail/dom-auto-refresh/ocmlgbpgpklpjaegeemejpafhbijgdkc |
| 简介 | Automatically refresh page when DOM has changed |
| 文件大小 | 70.32 KB |
| 安装次数 | 503 |
| 当前版本 | 0.0.1 |
| 更新时间 | 2016-05-14 |
| 上架时间 | 2016-05-14 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | kknordbo |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "DOM Auto Refresh",
"version": "0.0.1",
"description": "Automatically refresh page when DOM has changed",
"permissions": [
"tabs",
"storage"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"contentscript.js"
]
}
],
"web_accessible_resources": [
"script.js"
],
"manifest_version": 2
} | |