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
公式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]"
        }
    }
}