Unblock Sites

Bypass domain name blocks using Google Public DNS

What is Unblock Sites?

Unblock Sites is a Chrome extension developed by Anonymous, and its main feature is "Bypass domain name blocks using Google Public DNS".

Extension Screenshots

screenshot
screenshot

Download Unblock Sites Extension CRX File

Download Unblock Sites extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Unblock Sites Unblock Sites
ID cfpodbpbpcaccakppfhhmocmjleehngd
Official URL https://chromewebstore.google.com/detail/unblock-sites/cfpodbpbpcaccakppfhhmocmjleehngd
Description Bypass domain name blocks using Google Public DNS
File Size 20.21 KB
Installation Count 4,340
Current Version 0.0.2
Last Updated 2017-10-08
Publish Date 2017-10-08
Rating 1.79/5 Total 14 Ratings
Developer Anonymous
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}