Auto-Reload Target URL
Reloads a target URL every specified seconds.
Auto-Reload Target URLคืออะไร?
Auto-Reload Target URL เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jon และคุณลักษณะหลักของมันคือ "Reloads a target URL every specified seconds."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto-Reload Target URL
ดาวน์โหลดไฟล์ส่วนขยาย Auto-Reload Target URL ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Simple tool to automatically reload the webpage in the current tab. Supports any interval from 1 second to 10000. The extension is open source and does not collect any information.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Auto-Reload Target URL |
ID | fbofpnajkcpnpillmmfhggjandclmjgj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/auto-reload-target-url/fbofpnajkcpnpillmmfhggjandclmjgj |
คำอธิบาย | Reloads a target URL every specified seconds. |
ขนาดไฟล์ | 36.3 KB |
จำนวนการติดตั้ง | 1,299 |
เวอร์ชันปัจจุบัน | 1.4.1 |
อัปเดตครั้งล่าสุด | 2022-06-25 |
วันที่เผยแพร่ | 2017-12-09 |
คะแนน | 4.60/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | jon |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/jondb/auto-reload |
URL หน้าช่วยเหลือ | https://github.com/jondb/auto-reload/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto-Reload Target URL", "version": "1.4.1", "manifest_version": 3, "description": "Reloads a target URL every specified seconds.", "background": { "service_worker": "background.js" }, "action": { "default_icon": "stopwatch22.png", "default_popup": "info.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "timer.js" ] } ], "host_permissions": [ "http:\/\/*\/*" ], "permissions": [ "tabs", "storage", "alarms" ], "icons": { "16": "stopwatch16.png", "48": "stopwatch48.png", "128": "stopwatch128.png" } } |