Unblock Sites

Bypass domain name blocks using Google Public DNS

Was ist Unblock Sites?

Unblock Sites ist eine Chrome-Erweiterung, die von Anonymous entwickelt wurde, und ihr Hauptmerkmal ist "Bypass domain name blocks using Google Public DNS".

Erweiterungsscreenshots

screenshot
screenshot

Unblock Sites-Erweiterungs-CRX-Datei herunterladen

Laden Sie Unblock Sites-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Unblock Sites Unblock Sites
ID cfpodbpbpcaccakppfhhmocmjleehngd
Offizielle URL https://chromewebstore.google.com/detail/unblock-sites/cfpodbpbpcaccakppfhhmocmjleehngd
Beschreibung Bypass domain name blocks using Google Public DNS
Dateigröße 20.21 KB
Installationsanzahl 4,340
Aktuelle Version 0.0.2
Letztes Update 2017-10-08
Veröffentlichungsdatum 2017-10-08
Bewertung 1.79/5 Insgesamt 14 Bewertungen
Entwickler Anonymous
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}