URL Throttler
An extension that lets you delay the response from specific URLs
URL Throttler क्या है?
URL Throttler severest द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension that lets you delay the response from specific URLs"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में URL Throttler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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'" } |