DOM Auto Refresh
Automatically refresh page when DOM has changed
Cos'è DOM Auto Refresh?
DOM Auto Refresh è un'estensione di Chrome sviluppata da kknordbo, e la sua funzione principale è "Automatically refresh page when DOM has changed".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione DOM Auto Refresh
Scarica i file di estensione DOM Auto Refresh in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | ocmlgbpgpklpjaegeemejpafhbijgdkc |
| URL Ufficiale | https://chrome.google.com/webstore/detail/dom-auto-refresh/ocmlgbpgpklpjaegeemejpafhbijgdkc |
| Descrizione | Automatically refresh page when DOM has changed |
| Dimensione del File | 70.32 KB |
| Conteggio Installazioni | 503 |
| Versione Corrente | 0.0.1 |
| Ultimo Aggiornamento | 2016-05-14 |
| Data di Pubblicazione | 2016-05-14 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | kknordbo |
| Tipo di Pagamento | free |
| Lingue Supportate | 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
} | |