Auto refresh
Automatically refresh the specified page, or only refresh the inactive TAB page.
Auto refresh là gì?
Auto refresh là một tiện ích mở rộng Chrome được phát triển bởi idof, và tính năng chính của nó là "Automatically refresh the specified page, or only refresh the inactive TAB page.".
Ả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 Auto refresh
Tải xuống các tệp mở rộng 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
Automatically refresh the specified page, or only refresh the inactive TAB page.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | mljjfcmhgefdfgeomcaocgijloggnnjk |
URL Chính Thức | https://chrome.google.com/webstore/detail/auto-refresh/mljjfcmhgefdfgeomcaocgijloggnnjk |
Mô tả | Automatically refresh the specified page, or only refresh the inactive TAB page. |
Kích Thước Tệp | 74.91 KB |
Số Lần Cài Đặt | 10,000 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2014-11-15 |
Ngày Phát Hành | 2014-11-15 |
Đánh Giá | 4.27/5 Tổng số 15 Đánh Giá |
Nhà Phát Triển | idof |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } |