Redirector

Redirect urls using regular expressions

What is Redirector?

Redirector is a Chrome extension developed by Ben Davis Media, and its main feature is "Redirect urls using regular expressions".

Extension Screenshots

screenshot

Download Redirector Extension CRX File

Download Redirector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Redirector Redirector
ID pajiegeliagebegjdhebejdlknciafen
Official URL https://chromewebstore.google.com/detail/redirector/pajiegeliagebegjdhebejdlknciafen
Description Redirect urls using regular expressions
File Size 15.54 KB
Installation Count 26,623
Current Version 1.0
Last Updated 2013-07-28
Publish Date 2013-07-27
Rating 4.38/5 Total 97 Ratings
Developer Ben Davis Media
Payment Type free
Extension Website http://bendavis78.github.io/chrome-extension-redirector
Supported Languages 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'"
}