URL Redirect for Developers

Allows you to redirect one URL to another. It is intended to help developers debug issues on production websites.

URL Redirect for Developers क्या है?

URL Redirect for Developers Brian Mock द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to redirect one URL to another. It is intended to help developers debug issues on production websites."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में URL Redirect for Developers एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Examples of what you can do with URL Redirect for Developers:

- Replace a minified version of jQuery with a regular build for better debugging

- Replace production webpack bundles with local webpack bundles for testing your local code changes against production data

- Disabling Content-Security-Policy (CSP) on certain domains in order to test changes

- Redirect backend URLs to different URLs in order to test unimplemented backend features                    

एक्सटेंशन की मूल जानकारी

नाम URL Redirect for Developers URL Redirect for Developers
ID dapeklgnmaelnloappfkohdngdggcakf
आधिकारिक URL https://chrome.google.com/webstore/detail/url-redirect-for-develope/dapeklgnmaelnloappfkohdngdggcakf
विवरण Allows you to redirect one URL to another. It is intended to help developers debug issues on production websites.
फ़ाइल का आकार 131 KB
स्थापना संख्या 465
वर्तमान संस्करण 1.1
अंतिम अपडेट 2020-01-09
प्रकाशन तिथि 2020-01-05
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Brian Mock
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://mockbrian.com
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "description": "Allows you to redirect one URL to another. It is intended to help developers debug issues on production websites.",
    "name": "URL Redirect for Developers",
    "short_name": "URL Redirect",
    "version": "1.1",
    "author": "Brian Mock (mockbrian.com)",
    "homepage_url": "https:\/\/github.com\/wavebeem\/url-redirect-webextension",
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "icons": {
        "16": "img\/icon-enabled.png",
        "32": "img\/[email protected]",
        "128": "img\/[email protected]"
    },
    "permissions": [
        "webRequest",
        "webNavigation",
        "webRequestBlocking",
        ""
    ],
    "content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'",
    "background": {
        "scripts": [
            "lib\/webextension-polyfill.js",
            "lib\/parsimmon.js",
            "src\/background.js"
        ]
    },
    "browser_action": {
        "default_title": "URL Redirect",
        "default_icon": {
            "16": "img\/icon-enabled.png",
            "32": "img\/[email protected]"
        }
    }
}