Unblock Sites

Bypass domain name blocks using Google Public DNS

Unblock Sitesคืออะไร?

Unblock Sites เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Anonymous และคุณลักษณะหลักของมันคือ "Bypass domain name blocks using Google Public DNS"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Unblock Sites

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    ]
}