Unblock Sites

Bypass domain name blocks using Google Public DNS

Unblock Sites là gì?

Unblock Sites là một tiện ích mở rộng Chrome được phát triển bởi Anonymous, và tính năng chính của nó là "Bypass domain name blocks using Google Public DNS".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Unblock Sites

Tải xuống các tệp mở rộng Unblock Sites dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Unblock Sites Unblock Sites
ID cfpodbpbpcaccakppfhhmocmjleehngd
URL Chính Thức https://chromewebstore.google.com/detail/unblock-sites/cfpodbpbpcaccakppfhhmocmjleehngd
Mô tả Bypass domain name blocks using Google Public DNS
Kích Thước Tệp 20.21 KB
Số Lần Cài Đặt 4,340
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2017-10-08
Ngày Phát Hành 2017-10-08
Đánh Giá 1.79/5 Tổng số 14 Đánh Giá
Nhà Phát Triển Anonymous
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}