Redirector

Redirect urls using regular expressions

Redirector란 무엇입니까?

Redirector은(는) Ben Davis Media에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redirect urls using regular expressions"입니다.

확장 프로그램 스크린샷

screenshot

Redirector 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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