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
官方網址 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'"
}