LinkRedirector

Redirects any links to your arbitrary address by customizable filters.

Apa itu LinkRedirector?

LinkRedirector adalah ekstensi Chrome yang dikembangkan oleh https://www.whochan.com, dan fitur utamanya adalah "Redirects any links to your arbitrary address by customizable filters.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi LinkRedirector

Unduh file ekstensi LinkRedirector dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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).                    

Informasi Dasar Ekstensi

Nama LinkRedirector LinkRedirector
ID odchblbgkkchnldldakeikkjfbkllaah
URL Resmi https://chromewebstore.google.com/detail/linkredirector/odchblbgkkchnldldakeikkjfbkllaah
Deskripsi Redirects any links to your arbitrary address by customizable filters.
Ukuran File 262 KB
Jumlah Instalasi 2,448
Versi Saat Ini 6.2.5
Terakhir Diperbarui 2019-05-29
Tanggal Publikasi 2019-05-28
Penilaian 3.64/5 Total 22 Penilaian
Pengembang https://www.whochan.com
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://twitter.com/intent/tweet?screen_name=whochan&hashtags=LinkRedirector
URL Halaman Kebijakan Privasi http://far.whochan.com/wlog.cgi/Privacy%20Policy
Bahasa yang Didukung 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"
            ]
        }
    ]
}