Skip Redirect

Skip intermediary pages that some pages use before redirecting to a final page.

Skip Redirect란 무엇입니까?

Skip Redirect은(는) Sebastian Blask에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Skip intermediary pages that some pages use before redirecting to a final page."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Skip Redirect
=====================
Some web pages use intermediary pages before redirecting to a final page. This webextension tries to extract the final url from the intermediary url and goes there straight away if successful. As an example, try this url:

 - www.google.com/chrome/?or-maybe-rather-firefox=http%3A%2F%2Fwww.mozilla.org/

Please give feedback(see below) if you find websites where this fails or where you get redirected in a weird way when this add-on is enabled but not when it's disabled.

See the add-on's preferences (also available by clicking the toolbar icon) for options.

By default all URLs but the ones matching a no-skip-urls-list are checked for embedded URLs and redirects are skipped. Depending on the pages visited, this can cause problems. For example a dysfunctional login. The no-skip-urls-list can be edited to avoid these problems. There is also a skip-urls-list mode to avoid this kind of problem altogether. In skip-urls-list mode, all URLs for which redirects should be skipped need to be added to the skip-urls-list manually.

Some websites use multiple url parameters like this:

`www.example.com/page-we-want-to-skip?first=www.want-to-go-here.com&second=www.do-not-care-about-this-url.com`

Skip Redirect does not know which is the right parameter, but you can edit the no-skip-parameter-list. Adding `first` would skip to the URL of `second` and vice versa. Adding both, `first` and `second` would cause no skipping.

Privacy Policy
--------------

This extension does not collect or send data of any kind to third parties.

Feedback
--------

You can report bugs or make feature requests on https://github.com/sblask/webextension-skip-redirect

Patches are welcome.                    

확장 프로그램 기본 정보

이름 Skip Redirect Skip Redirect
ID jaoafjdoijdconemdmodhbfpianehlon
공식 URL https://chromewebstore.google.com/detail/skip-redirect/jaoafjdoijdconemdmodhbfpianehlon
설명 Skip intermediary pages that some pages use before redirecting to a final page.
파일 크기 120 KB
설치 횟수 60,004
현재 버전 2.3.6
최근 업데이트 2022-03-12
출시 날짜 2019-11-15
평점 3.71/5 총 147 개의 평점
개발자 Sebastian Blask
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/sblask/webextension-skip-redirect
도움말 페이지 URL https://github.com/sblask/webextension-skip-redirect
지원되는 언어 de,en,fr,tr,es,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Sebastian Blask",
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "base64.js",
            "pslrules.js",
            "psl.js",
            "url.js",
            "util.js",
            "background.js"
        ]
    },
    "browser_action": {
        "browser_style": false,
        "default_popup": "options\/options.html",
        "default_title": "__MSG_browserActionLabelDefault__"
    },
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/sblask\/webextension-skip-redirect",
    "icons": {
        "16": "icon-16x16.png",
        "32": "icon-32x32.png",
        "48": "icon-48x48.png",
        "64": "icon-64x64.png",
        "128": "icon-128x128.png"
    },
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "options_ui": {
        "page": "options\/options.html"
    },
    "permissions": [
        "",
        "clipboardWrite",
        "contextMenus",
        "notifications",
        "storage",
        "webRequest",
        "webRequestBlocking"
    ],
    "default_locale": "en",
    "version": "2.3.6"
}