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文件

下载Custom Redirects扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}