LinkRedirector

Redirects any links to your arbitrary address by customizable filters.

LinkRedirector란 무엇입니까?

LinkRedirector은(는) https://www.whochan.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redirects any links to your arbitrary address by customizable filters."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This extension redirects any links to your arbitrary address by customizable filters. This extension has included some functions of other extensions.

And, this extension provides LinkFilterAPI that is used by ImagePreviewer, SlideshowPlayer . If you use them, you MUST install this.

= Features

== Rewrite the Anchors

Anchors are rewritten by Filters.

When mouse hovers or When page is loaded or When click shortcut key, as you select by preferences.

Press "Esc" to leave from Shortcut Key Mode.

== Context Menu

Append links rewritten by filters to context menu.

== Redirect

Any resources can be redirected by filters.

= Preferences

== Filtering Rules

; Name : The name of the rule. It requires unique name.
; Include(include) : If the address of the current page matches this regexp, the rule will be applied. This is for security.
; Link Address(url) : If the address of the link matches this regexp, the rule will be applied.
; Image Address(img) : If this value exists, the rule will be applied only when the image which the link has in its text node matches this regexp.
; Text Content(xml) : If this value exists, the rule will be applied when the text content of the link matches this regexp.
; Replace : If this value exists, the address of the link will be replaced with this pattern with the regexp which is matched in order priority by xml > img > url.
; Decode : Decode URL after filtering.
; MIME Type : The type of the content refered by the filtered address when the rule is applied.

Rules are managed by every groups, shall be imported/exported/deleted.

== Compose Filters

A filter is composed by some groups of the filtering rules. The rules in a filter are applied in order from top to bottom.

== Preset Filters

This extension's features are run with customizable filters. So you have various how to use depending on your idea.

; Secure : Links to insecure pages(http) are rewritten to links to secure pages(https) (like Redirect to HTTPS).
; Entity : Description pages about an image are skipped, then you can access to the image directly(like Google Images Direct).  Or Advertisement page is skipped, then you can access to the main page directly(like NoDetour).
; Preview : A filter for ImagePreviewer, SlideshowPlayer.
; Edit : Documents and images are opened online with web applications, then you can edit them online (like Open It Online). PDF, DOC, other documents are opened using Google Document Viewer (like Documents preview/Google Docs Viewer).
; Archive : If the page was not there, open its web cache(like Gcache). 
; Translation : The link is opened with Google Translate(like PageTranslator).                    

확장 프로그램 기본 정보

이름 LinkRedirector LinkRedirector
ID odchblbgkkchnldldakeikkjfbkllaah
공식 URL https://chromewebstore.google.com/detail/linkredirector/odchblbgkkchnldldakeikkjfbkllaah
설명 Redirects any links to your arbitrary address by customizable filters.
파일 크기 262 KB
설치 횟수 2,448
현재 버전 6.2.5
최근 업데이트 2019-05-29
출시 날짜 2019-05-28
평점 3.64/5 총 22 개의 평점
개발자 https://www.whochan.com
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://twitter.com/intent/tweet?screen_name=whochan&hashtags=LinkRedirector
개인정보 보호 정책 페이지 URL http://far.whochan.com/wlog.cgi/Privacy%20Policy
지원되는 언어 en,ru,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LinkRedirector",
    "manifest_version": 2,
    "version": "6.2.5",
    "default_locale": "en",
    "description": "__MSG_DESCRIPTION__",
    "homepage_url": "http:\/\/far.whochan.com\/",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon112.png"
    },
    "background": {
        "page": "index.html"
    },
    "options_ui": {
        "chrome_style": false,
        "open_in_tab": true,
        "page": "options.html"
    },
    "page_action": {
        "default_title": "LinkRedirector",
        "default_icon": "buttons\/enabled.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "contextMenus",
        "webRequest",
        "webRequestBlocking"
    ],
    "web_accessible_resources": [
        "cursors\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "lib\/WHO.extension.client.js",
                "includes\/api.LinkFilter.js",
                "includes\/usoCommon.js",
                "includes\/usoLinkRedirector.js"
            ]
        },
        {
            "run_at": "document_idle",
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "includes\/WHO.activate.js"
            ]
        }
    ]
}