DOM Auto Refresh
Automatically refresh page when DOM has changed
Co to jest DOM Auto Refresh?
DOM Auto Refresh to rozszerzenie Chrome opracowane przez kknordbo, a jego główną funkcją jest „Automatically refresh page when DOM has changed”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia DOM Auto Refresh
Pobierz pliki rozszerzeń DOM Auto Refresh w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ocmlgbpgpklpjaegeemejpafhbijgdkc |
Oficjalny URL | https://chrome.google.com/webstore/detail/dom-auto-refresh/ocmlgbpgpklpjaegeemejpafhbijgdkc |
Opis | Automatically refresh page when DOM has changed |
Rozmiar pliku | 70.32 KB |
Liczba instalacji | 503 |
Aktualna Wersja | 0.0.1 |
Ostatnia Aktualizacja | 2016-05-14 |
Data Publikacji | 2016-05-14 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | kknordbo |
Typ Płatności | free |
Obsługiwane Języki | 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 } |