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 |
官方網址 | 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 } |