URL Throttler
An extension that lets you delay the response from specific URLs
什麼是URL Throttler?
URL Throttler是由severest開發的Chrome擴展程式,該擴展的主要功能是“An extension that lets you delay the response from specific URLs”。
擴展截圖
下載URL Throttler擴展crx文件
下載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 |
官方網址 | 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'" } |