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”。

扩展截图

screenshot

下载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 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'"
}