China Firewall

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

China Firewall là gì?

China Firewall là một tiện ích mở rộng Chrome được phát triển bởi ronny.kurland, và tính năng chính của nó là "View the internet from behind the Great Firewall of China. A simulation for COMP 301.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng China Firewall 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 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.                    

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

Tên China Firewall China Firewall
ID ddjnbibkjnpooggbojccbaodjpjcbabg
URL Chính Thức https://chromewebstore.google.com/detail/china-firewall/ddjnbibkjnpooggbojccbaodjpjcbabg
Mô tả View the internet from behind the Great Firewall of China. A simulation for COMP 301.
Kích Thước Tệp 1.35 MB
Số Lần Cài Đặt 42
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2020-08-04
Ngày Phát Hành 2020-03-28
Nhà Phát Triển ronny.kurland
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}