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
Eメール [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'"
}