Simple Auto Refresh
lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval
Apa itu Simple Auto Refresh?
Simple Auto Refresh adalah ekstensi Chrome yang dikembangkan oleh tobias.samesch, dan fitur utamanya adalah "lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Simple Auto Refresh
Unduh file ekstensi Simple 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
lean and simple chrome extension to refresh websites after timeout. you can manage all tabs refresh intervals inside option page. User interaction resets interval.
Informasi Dasar Ekstensi
Nama | Simple Auto Refresh |
ID | jghdcjbendekbeopdlofjcnogeeemjgd |
URL Resmi | https://chromewebstore.google.com/detail/simple-auto-refresh/jghdcjbendekbeopdlofjcnogeeemjgd |
Deskripsi | lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval |
Ukuran File | 10.36 KB |
Jumlah Instalasi | 18 |
Versi Saat Ini | 1.0.3 |
Terakhir Diperbarui | 2021-02-18 |
Tanggal Publikasi | 2021-01-09 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | tobias.samesch |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Auto Refresh", "version": "1.0.3", "description": "lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval", "permissions": [ "declarativeContent", "storage", "alarms", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "options_page": "options.html", "page_action": { "default_popup": "popup.html", "default_icon": { "24": "images\/ic_refresh_24px.png", "16": "images\/ic_refresh_24px.png", "32": "images\/ic_refresh_24px.png", "48": "images\/ic_refresh_24px.png", "128": "images\/ic_refresh_24px.png" } }, "icons": { "24": "images\/ic_refresh_24px.png", "16": "images\/ic_refresh_24px.png", "32": "images\/ic_refresh_24px.png", "48": "images\/ic_refresh_24px.png", "128": "images\/ic_refresh_24px.png" }, "manifest_version": 2 } |