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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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]"
        }
    }
}