Custom Redirects

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

Custom Redirects là gì?

Custom Redirects là một tiện ích mở rộng Chrome được phát triển bởi Pawel Raszewski, và tính năng chính của nó là "Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Custom Redirects

Tải xuống các tệp mở rộng Custom Redirects dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Custom Redirects Custom Redirects
ID kekdllcidamgebonidegjekidhdihdli
URL Chính Thức https://chromewebstore.google.com/detail/custom-redirects/kekdllcidamgebonidegjekidhdihdli
Mô tả Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.
Kích Thước Tệp 135 KB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2014-02-12
Ngày Phát Hành 2014-02-12
Đánh Giá 3.85/5 Tổng số 205 Đánh Giá
Nhà Phát Triển Pawel Raszewski
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}