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開發的Chrome擴展程式,該擴展的主要功能是“Allows you to redirect one URL to another. It is intended to help developers debug issues on production websites.”。

擴展截圖

screenshot

下載URL Redirect for Developers擴展crx文件

下載URL Redirect for Developers擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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]"
        }
    }
}