DOM Auto Refresh
Automatically refresh page when DOM has changed
Wat is DOM Auto Refresh?
DOM Auto Refresh is een Chrome-extensie ontwikkeld door kknordbo, en de belangrijkste functie is "Automatically refresh page when DOM has changed".
Extensie Screenshots
Download het CRX-bestand van de extensie DOM Auto Refresh
Download DOM Auto Refresh-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | ocmlgbpgpklpjaegeemejpafhbijgdkc |
| Officiële URL | https://chrome.google.com/webstore/detail/dom-auto-refresh/ocmlgbpgpklpjaegeemejpafhbijgdkc |
| Beschrijving | Automatically refresh page when DOM has changed |
| Bestandsgrootte | 70.32 KB |
| Aantal Installaties | 503 |
| Huidige Versie | 0.0.1 |
| Laatst Bijgewerkt | 2016-05-14 |
| Publicatiedatum | 2016-05-14 |
| Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | kknordbo |
| Betalingswijze | free |
| Ondersteunde Talen | 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
} | |