Redirector

Redirect urls using regular expressions

Co je Redirector?

Redirector je rozšíření Chrome vyvinuté Ben Davis Media, a jeho hlavní funkcí je „Redirect urls using regular expressions“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Redirector

Stáhněte si soubory rozšíření Redirector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Redirector Redirector
ID pajiegeliagebegjdhebejdlknciafen
Oficiální URL https://chromewebstore.google.com/detail/redirector/pajiegeliagebegjdhebejdlknciafen
Popis Redirect urls using regular expressions
Velikost souboru 15.54 KB
Počet instalací 26,623
Aktuální Verze 1.0
Poslední Aktualizace 2013-07-28
Datum Vydání 2013-07-27
Hodnocení 4.38/5 Celkem 97 Hodnocení
Vývojář Ben Davis Media
Typ Platby free
Webové stránky Rozšíření http://bendavis78.github.io/chrome-extension-redirector
Podporované Jazyky 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'"
}