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 } |