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