Simple Auto Refresh
lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval
Simple Auto Refresh là gì?
Simple Auto Refresh là một tiện ích mở rộng Chrome được phát triển bởi tobias.samesch, và tính năng chính của nó là "lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Simple Auto Refresh
Tải xuống các tệp mở rộng Simple Auto Refresh dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
lean and simple chrome extension to refresh websites after timeout. you can manage all tabs refresh intervals inside option page. User interaction resets interval.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Simple Auto Refresh |
ID | jghdcjbendekbeopdlofjcnogeeemjgd |
URL Chính Thức | https://chromewebstore.google.com/detail/simple-auto-refresh/jghdcjbendekbeopdlofjcnogeeemjgd |
Mô tả | lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval |
Kích Thước Tệp | 10.36 KB |
Số Lần Cài Đặt | 18 |
Phiên Bản Hiện Tại | 1.0.3 |
Cập Nhật Lần Cuối | 2021-02-18 |
Ngày Phát Hành | 2021-01-09 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | tobias.samesch |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |