LinkRedirector

Redirects any links to your arbitrary address by customizable filters.

LinkRedirector क्या है?

LinkRedirector https://www.whochan.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Redirects any links to your arbitrary address by customizable filters."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में LinkRedirector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}