Just Refresh
One-click toggle auto-refresh
Just Refreshคืออะไร?
Just Refresh เป็นส่วนขยายของ Chrome ที่พัฒนาโดย claxtons4 และคุณลักษณะหลักของมันคือ "One-click toggle auto-refresh"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Just Refresh
ดาวน์โหลดไฟล์ส่วนขยาย Just Refresh ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Just Refresh is an open source extension that automatically refreshes a page on a set interval with one click. Change the interval by right clicking the icon, and selecting "Options". You can auto refresh as many tabs are you like. If you like the extension, please leave a review and support me here: https://ko-fi.com/claxtastic New in v1.2: Apply settings to any URL from a given domain You can view the source of the extension here: https://github.com/Claxtastic/just-refresh And find my other projects here: https://github.com/Claxtastic The extension was designed overall to be minimal and straight to the point. It requires two permissions: 1. activeTab: To access the current tab and start the refresh loop. 2. storage: To locally store the current refresh interval.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Just Refresh |
ID | pgaimkehoiabhliejchbnamlboniofpd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/just-refresh/pgaimkehoiabhliejchbnamlboniofpd |
คำอธิบาย | One-click toggle auto-refresh |
ขนาดไฟล์ | 44.83 KB |
จำนวนการติดตั้ง | 1,000 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2021-03-06 |
วันที่เผยแพร่ | 2019-07-23 |
คะแนน | 4.43/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | claxtons4 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Claxtastic/just-refresh |
URL หน้าช่วยเหลือ | https://ko-fi.com/claxtastic |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Just Refresh", "version": "1.2", "description": "One-click toggle auto-refresh", "options_page": "options.html", "permissions": [ "activeTab", "storage" ], "browser_action": [], "commands": { "toggle-refresh": { "suggested_key": { "default": "Alt+R", "mac": "Alt+R" }, "description": "Toggle refresh with keybind" } }, "background": { "scripts": [ "jquery.min.js", "background.js" ], "persistent": false }, "icons": { "128": "images\/just_refresh128.png" }, "manifest_version": 2 } |