LinkRedirector

Redirects any links to your arbitrary address by customizable filters.

Hvad er LinkRedirector?

LinkRedirector er en Chrome-udvidelse udviklet af https://www.whochan.com, og dens hovedfunktion er "Redirects any links to your arbitrary address by customizable filters.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download LinkRedirector-udvidelses-CRX-fil

Download LinkRedirector-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn LinkRedirector LinkRedirector
ID odchblbgkkchnldldakeikkjfbkllaah
Officiel URL https://chromewebstore.google.com/detail/linkredirector/odchblbgkkchnldldakeikkjfbkllaah
Beskrivelse Redirects any links to your arbitrary address by customizable filters.
Filstørrelse 262 KB
Antal Installationer 2,448
Nuværende Version 6.2.5
Senest Opdateret 2019-05-29
Udgivelsesdato 2019-05-28
Bedømmelse 3.64/5 Samlet 22 Bedømmelser
Udvikler https://www.whochan.com
E-mail [email protected]
Betalingsmetode free
Hjælpeside-URL https://twitter.com/intent/tweet?screen_name=whochan&hashtags=LinkRedirector
URL til Fortrolighedspolitik Side http://far.whochan.com/wlog.cgi/Privacy%20Policy
Understøttede Sprog 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"
            ]
        }
    ]
}