Unblock Sites

Bypass domain name blocks using Google Public DNS

Unblock Sites란 무엇입니까?

Unblock Sites은(는) Anonymous에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bypass domain name blocks using Google Public DNS"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Unblock Sites 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension will retrieve the correct IP of a blocked site using Google Public DNS and connect to the website by directly using its ip address in the address bar.

Some sites only work over https. You'll receive a "your connection is not private" warning, but you can bypass this by clicking "advanced" and "proceed".

Won't work on servers using http/2.

reCAPTCHA will not work on most sites, look for a "having problems with the captcha" link or some alternative.                    

확장 프로그램 기본 정보

이름 Unblock Sites Unblock Sites
ID cfpodbpbpcaccakppfhhmocmjleehngd
공식 URL https://chromewebstore.google.com/detail/unblock-sites/cfpodbpbpcaccakppfhhmocmjleehngd
설명 Bypass domain name blocks using Google Public DNS
파일 크기 20.21 KB
설치 횟수 4,340
현재 버전 0.0.2
최근 업데이트 2017-10-08
출시 날짜 2017-10-08
평점 1.79/5 총 14 개의 평점
개발자 Anonymous
이메일 [email protected]
결제 유형 free
지원되는 언어 en,pt-PT
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "0.0.2",
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "locked128.png",
        "default_title": "Site Unblocker"
    },
    "content_scripts": [
        {
            "js": [
                "contentScript.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "128": "unlocked128.png"
    },
    "permissions": [
        "alarms",
        "webRequest",
        "webRequestBlocking",
        "",
        "storage",
        "tabs"
    ]
}