ChromeReloadPlus
Automatically reload a page. Configure interval between page refreshes and see a count-down until the next refresh.
ChromeReloadPlusคืออะไร?
ChromeReloadPlus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย BenKewell และคุณลักษณะหลักของมันคือ "Automatically reload a page. Configure interval between page refreshes and see a count-down until the next refresh."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChromeReloadPlus
ดาวน์โหลดไฟล์ส่วนขยาย ChromeReloadPlus ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
============================== ** WARNING!! THIS EXTENSION IS DEPRECATED. ** Due to Google migrating Chrome Extensions to Manifest V3, the timing mechanism of this extension will no longer work by January 2023. This extension is currently in deprecated state. Existing users are suggested to look for alternatives by January 2023. ============================== * Features * 1. Automatically reload your page by time interval. 2. Activate reloader with default interval through keyboard hot-key (Ctrl+Alt+R or Ctrl+Alt+F5) 3. Auto detect key press / mouse click by user and delay reload when necessary. By default keyboard hot-key is disabled. Please go to the option page to enable hot-key by setting a default interval. * Q&A * 1. Is it possible to keep refreshing until key pressed? The timer is reset when a browser tab is reloaded, so the page will keep refreshed by interval until you manually cancel the timer on that browser tab. ------------------------------ Release notes: v2.0.2 Minor improvement to logo image. v2.0.1 Update description of extension. v2.0 Complete rewrite of codebase to utilize latest Chrome API. Update on interface using more modern styling. Better privacy: no longer need permission to access browsing data. v1.1.1 Bug fix on "Never" option not working. v1.1.0 New logo. User interface improvement. Delay reload on user key press / mouse click only when next reload is within 60 seconds. v1.0.2 Minor update on code to meet latest Google requirement. v1.0.1 Bug fix on hot-key Ctrl+Alt+F5 not working. v1.0 Initial fork from source origin: ChromeReload http://code.google.com/p/chrome-reload/ ------------------------------ Credit, contains resources from: GLYPHICONS https://www.glyphicons.com/ SPECTRE.CSS https://picturepan2.github.io/spectre/
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ChromeReloadPlus |
ID | nbbpjdmdkcmpimmhloehkojhbhjlboog |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chromereloadplus/nbbpjdmdkcmpimmhloehkojhbhjlboog |
คำอธิบาย | Automatically reload a page. Configure interval between page refreshes and see a count-down until the next refresh. |
ขนาดไฟล์ | 47.3 KB |
จำนวนการติดตั้ง | 41,146 |
เวอร์ชันปัจจุบัน | 2.0.2 |
อัปเดตครั้งล่าสุด | 2022-02-19 |
วันที่เผยแพร่ | 2019-01-28 |
คะแนน | 4.42/5 รวมทั้งหมด 182 คะแนน |
ผู้พัฒนา | BenKewell |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ChromeReloadPlus", "version": "2.0.2", "manifest_version": 2, "description": "Automatically reload a page. Configure interval between page refreshes and see a count-down until the next refresh.", "icons": { "32": "images\/logo-32.png", "128": "images\/logo-128.png" }, "browser_action": { "default_icon": "images\/logo-32.png", "default_title": "Reloader", "default_popup": "popup.html" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "js\/content_script.js" ], "run_at": "document_start", "all_frames": false } ], "options_page": "options.html", "permissions": [ "storage" ] } |