Auto refresh
Automatically refresh the specified page, or only refresh the inactive TAB page.
Co je Auto refresh?
Auto refresh je rozšíření Chrome vyvinuté idof, a jeho hlavní funkcí je „Automatically refresh the specified page, or only refresh the inactive TAB page.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Auto refresh
Stáhněte si soubory rozšíření Auto refresh ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Automatically refresh the specified page, or only refresh the inactive TAB page.
Základní Informace o Rozšíření
Název | |
ID | mljjfcmhgefdfgeomcaocgijloggnnjk |
Oficiální URL | https://chrome.google.com/webstore/detail/auto-refresh/mljjfcmhgefdfgeomcaocgijloggnnjk |
Popis | Automatically refresh the specified page, or only refresh the inactive TAB page. |
Velikost souboru | 74.91 KB |
Počet instalací | 10,000 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2014-11-15 |
Datum Vydání | 2014-11-15 |
Hodnocení | 4.27/5 Celkem 15 Hodnocení |
Vývojář | idof |
Typ Platby | free |
Podporované Jazyky | 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" } |