URL Throttler

An extension that lets you delay the response from specific URLs

URL Throttler là gì?

URL Throttler là một tiện ích mở rộng Chrome được phát triển bởi severest, và tính năng chính của nó là "An extension that lets you delay the response from specific URLs".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng URL Throttler

Tải xuống các tệp mở rộng URL Throttler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên URL Throttler URL Throttler
ID kpkeghonflnkockcnaegmphgdldfnden
URL Chính Thức https://chromewebstore.google.com/detail/url-throttler/kpkeghonflnkockcnaegmphgdldfnden
Mô tả An extension that lets you delay the response from specific URLs
Kích Thước Tệp 38.13 KB
Số Lần Cài Đặt 9,000
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2021-05-06
Ngày Phát Hành 2020-01-19
Đánh Giá 4.66/5 Tổng số 32 Đánh Giá
Nhà Phát Triển severest
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}