Auto refresh
Automatically refresh the specified page, or only refresh the inactive TAB page.
Apa itu Auto refresh?
Auto refresh adalah ekstensi Chrome yang dikembangkan oleh idof, dan fitur utamanya adalah "Automatically refresh the specified page, or only refresh the inactive TAB page.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Auto refresh
Unduh file ekstensi Auto refresh dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Automatically refresh the specified page, or only refresh the inactive TAB page.
Informasi Dasar Ekstensi
Nama | |
ID | mljjfcmhgefdfgeomcaocgijloggnnjk |
URL Resmi | https://chrome.google.com/webstore/detail/auto-refresh/mljjfcmhgefdfgeomcaocgijloggnnjk |
Deskripsi | Automatically refresh the specified page, or only refresh the inactive TAB page. |
Ukuran File | 74.91 KB |
Jumlah Instalasi | 10,000 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2014-11-15 |
Tanggal Publikasi | 2014-11-15 |
Penilaian | 4.27/5 Total 15 Penilaian |
Pengembang | idof |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } |