URL Throttler

An extension that lets you delay the response from specific URLs

¿Qué es URL Throttler?

URL Throttler es una extensión de Chrome desarrollada por severest, y su función principal es "An extension that lets you delay the response from specific URLs".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión URL Throttler

Descarga archivos de extensión URL Throttler en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre URL Throttler URL Throttler
ID kpkeghonflnkockcnaegmphgdldfnden
URL Oficial https://chromewebstore.google.com/detail/url-throttler/kpkeghonflnkockcnaegmphgdldfnden
Descripción An extension that lets you delay the response from specific URLs
Tamaño del Archivo 38.13 KB
Cantidad de Instalaciones 9,000
Versión Actual 1.2.0
Última Actualización 2021-05-06
Fecha de Publicación 2020-01-19
Calificación 4.66/5 Total de 32 Calificaciones
Desarrollador severest
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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'"
}