DOM Auto Refresh
Automatically refresh page when DOM has changed
What is DOM Auto Refresh?
DOM Auto Refresh is a Chrome extension developed by kknordbo, and its main feature is "Automatically refresh page when DOM has changed".
Extension Screenshots
Download DOM Auto Refresh Extension CRX File
Download DOM Auto Refresh extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | ocmlgbpgpklpjaegeemejpafhbijgdkc |
Official URL | https://chrome.google.com/webstore/detail/dom-auto-refresh/ocmlgbpgpklpjaegeemejpafhbijgdkc |
Description | Automatically refresh page when DOM has changed |
File Size | 70.32 KB |
Installation Count | 503 |
Current Version | 0.0.1 |
Last Updated | 2016-05-14 |
Publish Date | 2016-05-14 |
Rating | 5.00/5 Total 2 Ratings |
Developer | kknordbo |
Payment Type | free |
Supported Languages | 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 } |