Auto refresh
Automatically refresh the specified page, or only refresh the inactive TAB page.
¿Qué es Auto refresh?
Auto refresh es una extensión de Chrome desarrollada por idof, y su función principal es "Automatically refresh the specified page, or only refresh the inactive TAB page.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Auto refresh
Descarga archivos de extensión Auto refresh en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Automatically refresh the specified page, or only refresh the inactive TAB page.
Información Básica de la Extensión
Nombre | |
ID | mljjfcmhgefdfgeomcaocgijloggnnjk |
URL Oficial | https://chrome.google.com/webstore/detail/auto-refresh/mljjfcmhgefdfgeomcaocgijloggnnjk |
Descripción | Automatically refresh the specified page, or only refresh the inactive TAB page. |
Tamaño del Archivo | 74.91 KB |
Cantidad de Instalaciones | 10,000 |
Versión Actual | 1.0 |
Última Actualización | 2014-11-15 |
Fecha de Publicación | 2014-11-15 |
Calificación | 4.27/5 Total de 15 Calificaciones |
Desarrollador | idof |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "background": { "page": "background.html", "script": "background.js" }, "content_scripts": [ { "all_frames": false, "js": [ "script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "default_locale": "en", "description": "__MSG_extDescription__", "icons": { "128": "img\/on128.png", "64": "img\/on64.png" }, "manifest_version": 2, "name": "__MSG_extName__", "page_action": { "default_icon": "img\/off.png", "default_popup": "popup.html", "default_title": "__MSG_extName__" }, "permissions": [ "tabs", "browsingData", "webRequest", "webNavigation", "http:\/\/*\/*", "https:\/\/*\/*" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.0" } |