China Firewall

View the internet from behind the Great Firewall of China. A simulation for COMP 301.

China Firewallคืออะไร?

China Firewall เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ronny.kurland และคุณลักษณะหลักของมันคือ "View the internet from behind the Great Firewall of China. A simulation for COMP 301."

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

screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย China Firewall ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension is an educational simulation of the internet in China, and the censorship within.
This is not a complete or true simulation.

To open the main interface, click on the floating icon in the bottom right of most sites. Click anywhere to dismiss.

Developed for COMP 301 at Capilano University.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ China Firewall China Firewall
ID ddjnbibkjnpooggbojccbaodjpjcbabg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/china-firewall/ddjnbibkjnpooggbojccbaodjpjcbabg
คำอธิบาย View the internet from behind the Great Firewall of China. A simulation for COMP 301.
ขนาดไฟล์ 1.35 MB
จำนวนการติดตั้ง 42
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2020-08-04
วันที่เผยแพร่ 2020-03-28
ผู้พัฒนา ronny.kurland
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "China Firewall",
    "version": "1.2",
    "description": "View the internet from behind the Great Firewall of China. A simulation for COMP 301.",
    "author": "Carmel Kurland :) Check info.js for, well, more info.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-3.4.1.js",
                "redact.js"
            ],
            "css": [
                "redact.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-3.4.1.js",
                "info.js"
            ],
            "css": [
                "info.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background-block.js"
        ]
    },
    "permissions": [
        "webRequest",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequestBlocking",
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "html\/*"
    ],
    "icons": {
        "128": "images\/chinaicon.png"
    },
    "manifest_version": 2
}