Redirector

Redirect urls using regular expressions

Vad är Redirector?

Redirector är en Chrome-tillägg utvecklad av Ben Davis Media, och dess huvudfunktion är "Redirect urls using regular expressions".

Tilläggsskärmbilder

screenshot

Ladda ner Redirector-förlängningens CRX-fil

Ladda ner Redirector-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Redirector Redirector
ID pajiegeliagebegjdhebejdlknciafen
Officiell webbadress https://chromewebstore.google.com/detail/redirector/pajiegeliagebegjdhebejdlknciafen
Beskrivning Redirect urls using regular expressions
Filstorlek 15.54 KB
Antal Installationer 26,623
Aktuell Version 1.0
Senast Uppdaterad 2013-07-28
Publiceringsdatum 2013-07-27
Betyg 4.38/5 Totalt 97 Betyg
Utvecklare Ben Davis Media
Betalningssätt free
Tilläggswebbplats http://bendavis78.github.io/chrome-extension-redirector
Stödda Språk 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'"
}