Redirector

Redirect urls using regular expressions

什么是Redirector?

Redirector是由Ben Davis Media开发的Chrome扩展程序,该扩展的主要功能是“Redirect urls using regular expressions”。

扩展截图

screenshot

下载Redirector扩展crx文件

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

扩展使用说明

                        This simple extension allows you to redirect urls using the power of regular expressions.

For example, you can have all mobile Wikipedia urls to open in desktop mode (this is convered in the tutorial below).

You could also redirect to non-browser schemes to launch external apps. For example,If you want youtube links to open in a desktop video app (such as minitube), you can redirect all youtube urls with a "youtube:" prefix, and then set up a scheme handler on your OS to pass youtube: urls to your player.

For documentation, visit the product home page: http://bendavis78.github.io/chrome-extension-redirector                    

扩展基本信息

名称 Redirector Redirector
ID pajiegeliagebegjdhebejdlknciafen
官方URL https://chromewebstore.google.com/detail/redirector/pajiegeliagebegjdhebejdlknciafen
简介 Redirect urls using regular expressions
文件大小 15.54 KB
安装次数 26,623
当前版本 1.0
更新时间 2013-07-28
上架时间 2013-07-27
评分 4.38/5 共97次评分
开发者 Ben Davis Media
付费类型 free
扩展官网 http://bendavis78.github.io/chrome-extension-redirector
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Redirector",
    "description": "Redirect urls using regular expressions",
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "version": "1.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "content_security_policy": "script-src 'self' https:\/\/*.googleapis.com https:\/\/*.bootstrapcdn.com; object-src 'self'"
}