China Firewall

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

China Firewall란 무엇입니까?

China Firewall은(는) ronny.kurland에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View the internet from behind the Great Firewall of China. A simulation for COMP 301."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

China Firewall 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}