URL Throttler
An extension that lets you delay the response from specific URLs
URL Throttlerคืออะไร?
URL Throttler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย severest และคุณลักษณะหลักของมันคือ "An extension that lets you delay the response from specific URLs"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย URL Throttler
ดาวน์โหลดไฟล์ส่วนขยาย URL Throttler ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Chrome Devtools allows you to throttle network speed across all network requests. However, if you want to slow down a specific URL while leaving others at normal speed, you're out of luck. Use this tool to achieve that. Install and specify the URL with a delay in milliseconds. Whenever the browser requests that URL, the response will be delayed by that amount of time. URLs not matching the ones you enter will behave as they normally would.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | URL Throttler |
ID | kpkeghonflnkockcnaegmphgdldfnden |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/url-throttler/kpkeghonflnkockcnaegmphgdldfnden |
คำอธิบาย | An extension that lets you delay the response from specific URLs |
ขนาดไฟล์ | 38.13 KB |
จำนวนการติดตั้ง | 9,000 |
เวอร์ชันปัจจุบัน | 1.2.0 |
อัปเดตครั้งล่าสุด | 2021-05-06 |
วันที่เผยแพร่ | 2020-01-19 |
คะแนน | 4.66/5 รวมทั้งหมด 32 คะแนน |
ผู้พัฒนา | severest |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "URL Throttler", "description": "An extension that lets you delay the response from specific URLs", "version": "1.2.0", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "webRequest", "webRequestBlocking", "storage", "https:\/\/*\/*", "http:\/\/*\/*" ], "browser_action": { "default_title": "URL Throttler", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/cdnjs.cloudflare.com; object-src 'self'" } |