Unblock Sites

Bypass domain name blocks using Google Public DNS

Qu'est-ce que Unblock Sites ?

Unblock Sites est une extension Chrome développée par Anonymous, et sa fonction principale est "Bypass domain name blocks using Google Public DNS".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Unblock Sites

Téléchargez les fichiers d'extension Unblock Sites au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Unblock Sites Unblock Sites
ID cfpodbpbpcaccakppfhhmocmjleehngd
URL Officiel https://chromewebstore.google.com/detail/unblock-sites/cfpodbpbpcaccakppfhhmocmjleehngd
Description Bypass domain name blocks using Google Public DNS
Taille du Fichier 20.21 KB
Nombre d'Installations 4,340
Version Actuelle 0.0.2
Dernière Mise à Jour 2017-10-08
Date de Publication 2017-10-08
Évaluation 1.79/5 Total 14 Évaluations
Développeur Anonymous
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}