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文件

下載Unblock Sites擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}