Auto Refresh With Notifications
chrome extension to auto refresh web page with notifications.
Auto Refresh With Notifications là gì?
Auto Refresh With Notifications là một tiện ích mở rộng Chrome được phát triển bởi little.melon.dev, và tính năng chính của nó là "chrome extension to auto refresh web page with notifications.".
Ả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 With Notifications
Tải xuống các tệp mở rộng Auto Refresh With Notifications 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
Tired of manually refresh on one page with all your attention to get expected or unwanted contents? For example, refresh your shopping cart over and over to get a delivery window on amazon/instacart? You should save your valuable time for something else. Auto Refresh With Notifications will help you automatically refresh on one page until "Excludes" contents are not shown on the page. You will be notified loudly with sounds which are set in "Notification Text". In order to keep auto refreshing even you are away, please search online for how to disable your operating system's screen saver and prevent your computer from sleeping. Need any help? Twitter: @LittleMelonDev
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Auto Refresh With Notifications |
ID | hdokhoidbfbodcgoeacbddacldjgnkjc |
URL Chính Thức | https://chromewebstore.google.com/detail/auto-refresh-with-notific/hdokhoidbfbodcgoeacbddacldjgnkjc |
Mô tả | chrome extension to auto refresh web page with notifications. |
Kích Thước Tệp | 66.52 KB |
Số Lần Cài Đặt | 10,102 |
Phiên Bản Hiện Tại | 0.0.4 |
Cập Nhật Lần Cuối | 2020-04-29 |
Ngày Phát Hành | 2020-04-26 |
Đánh Giá | 3.84/5 Tổng số 38 Đánh Giá |
Nhà Phát Triển | little.melon.dev |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Auto Refresh With Notifications", "version": "0.0.4", "description": "chrome extension to auto refresh web page with notifications.", "permissions": [ "tts", "activeTab", "storage" ], "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "run_at": "document_idle", "js": [ "lib\/js\/jquery.min.js", "contentScript.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "128": "icon.png" } } |