No Redirect

No Redirect

No Redirect란 무엇입니까?

No Redirect은(는) 王成에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "No Redirect"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Some websites change the links on their pages to "redirect url". This sucks.

For example: a link to www.google.com in Slack is like "https://slack-redir.net/link?url=https://www.google.com".

This means when you click on these links, instead of going to the target location, you are actrually visiting "slack-redir.net" server (which is controlled by Slack obviously) and the server will then "redirect" you to the real location.This means if slack server is slow or down, you can't go to the location.

This extension uses Chrome API to intercept the link before the navigation. It will extrack the real url from the "redirect" url and navigate you to the real url directly.                    

확장 프로그램 기본 정보

이름 No Redirect No Redirect
ID bgflddecjcadaapedngfifbkhghnpmep
공식 URL https://chromewebstore.google.com/detail/no-redirect/bgflddecjcadaapedngfifbkhghnpmep
설명 No Redirect
파일 크기 184 KB
설치 횟수 3,076
현재 버전 1.2.0
최근 업데이트 2020-03-04
출시 날짜 2020-03-04
평점 3.13/5 총 8 개의 평점
개발자 王成
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/wangcheng678/no-redir-browser-extension
도움말 페이지 URL https://github.com/wangcheng678/no-redir-browser-extension/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No Redirect",
    "version": "1.2.0",
    "description": "No Redirect",
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "icons": {
        "16": "img\/icon_awesome_face_16.png",
        "32": "img\/icon_awesome_face_32.png",
        "48": "img\/icon_awesome_face_48.png",
        "128": "img\/icon_awesome_face_128.png"
    },
    "options_page": "options.html",
    "permissions": [
        "webNavigation",
        "storage",
        "notifications"
    ],
    "manifest_version": 2
}