LinkRedirector

Redirects any links to your arbitrary address by customizable filters.

Wat is LinkRedirector?

LinkRedirector is een Chrome-extensie ontwikkeld door https://www.whochan.com, en de belangrijkste functie is "Redirects any links to your arbitrary address by customizable filters.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie LinkRedirector

Download LinkRedirector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam LinkRedirector LinkRedirector
ID odchblbgkkchnldldakeikkjfbkllaah
Officiële URL https://chromewebstore.google.com/detail/linkredirector/odchblbgkkchnldldakeikkjfbkllaah
Beschrijving Redirects any links to your arbitrary address by customizable filters.
Bestandsgrootte 262 KB
Aantal Installaties 2,448
Huidige Versie 6.2.5
Laatst Bijgewerkt 2019-05-29
Publicatiedatum 2019-05-28
Beoordeling 3.64/5 Totaal 22 Beoordelingen
Ontwikkelaar https://www.whochan.com
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://twitter.com/intent/tweet?screen_name=whochan&hashtags=LinkRedirector
URL van de Privacybeleid Pagina http://far.whochan.com/wlog.cgi/Privacy%20Policy
Ondersteunde Talen 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"
            ]
        }
    ]
}