Custom Redirects

Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.

Custom Redirects란 무엇입니까?

Custom Redirects은(는) Pawel Raszewski에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts."입니다.

확장 프로그램 스크린샷

screenshot

Custom Redirects 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension makes possible to redirect specified URLs to different locations. It may be very useful for debugging production sites which have minified JS which can be replaced for non-minified JS.

Any asset URL can be redirected to any destination, that means you can replace images, CSS, javascript files and everything that is loaded by a browser via HTTP request.                    

확장 프로그램 기본 정보

이름 Custom Redirects Custom Redirects
ID kekdllcidamgebonidegjekidhdihdli
공식 URL https://chromewebstore.google.com/detail/custom-redirects/kekdllcidamgebonidegjekidhdihdli
설명 Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.
파일 크기 135 KB
설치 횟수 10,000
현재 버전 1.0.1
최근 업데이트 2014-02-12
출시 날짜 2014-02-12
평점 3.85/5 총 205 개의 평점
개발자 Pawel Raszewski
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Custom Redirects",
    "version": "1.0.1",
    "description": "Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "icons": {
        "128": "assets_swapper_icon_128.png",
        "48": "assets_swapper_icon_48.png",
        "16": "assets_swapper_icon_16.png"
    },
    "options_page": "options.html",
    "page_action": {
        "default_icon": "assets_swapper_icon_48.png",
        "default_title": "Assets Swapper - Enabled here"
    }
}