URL Throttler

An extension that lets you delay the response from specific URLs

Vad är URL Throttler?

URL Throttler är en Chrome-tillägg utvecklad av severest, och dess huvudfunktion är "An extension that lets you delay the response from specific URLs".

Tilläggsskärmbilder

screenshot

Ladda ner URL Throttler-förlängningens CRX-fil

Ladda ner URL Throttler-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn URL Throttler URL Throttler
ID kpkeghonflnkockcnaegmphgdldfnden
Officiell webbadress https://chromewebstore.google.com/detail/url-throttler/kpkeghonflnkockcnaegmphgdldfnden
Beskrivning An extension that lets you delay the response from specific URLs
Filstorlek 38.13 KB
Antal Installationer 9,000
Aktuell Version 1.2.0
Senast Uppdaterad 2021-05-06
Publiceringsdatum 2020-01-19
Betyg 4.66/5 Totalt 32 Betyg
Utvecklare severest
E-post [email protected]
Betalningssätt free
Stödda Språk 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'"
}