URL Throttler

An extension that lets you delay the response from specific URLs

Τι είναι το URL Throttler;

Το URL Throttler είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον severest, και η κύρια λειτουργία του είναι "An extension that lets you delay the response from specific URLs".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης URL Throttler

Λήψη αρχείων επέκτασης 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'"
}