DOM Auto Refresh
Automatically refresh page when DOM has changed
Qu'est-ce que DOM Auto Refresh ?
DOM Auto Refresh est une extension Chrome développée par kknordbo, et sa fonction principale est "Automatically refresh page when DOM has changed".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension DOM Auto Refresh
Téléchargez les fichiers d'extension DOM Auto Refresh au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | ocmlgbpgpklpjaegeemejpafhbijgdkc |
URL Officiel | https://chrome.google.com/webstore/detail/dom-auto-refresh/ocmlgbpgpklpjaegeemejpafhbijgdkc |
Description | Automatically refresh page when DOM has changed |
Taille du Fichier | 70.32 KB |
Nombre d'Installations | 503 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2016-05-14 |
Date de Publication | 2016-05-14 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | kknordbo |
Type de Paiement | free |
Langues Prises en Charge | 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 } |