Redirector

Redirect urls using regular expressions

Что такое Redirector?

Redirector - это расширение Chrome, разработанное Ben Davis Media, и его основная функция - "Redirect urls using regular expressions".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Redirector

Скачайте файлы расширений 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'"
}