China Firewall

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

O que é China Firewall?

China Firewall é uma extensão do Chrome desenvolvida por ronny.kurland, e sua principal característica é "View the internet from behind the Great Firewall of China. A simulation for COMP 301.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão China Firewall

Baixe arquivos de extensão China Firewall no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome China Firewall China Firewall
ID ddjnbibkjnpooggbojccbaodjpjcbabg
URL Oficial https://chromewebstore.google.com/detail/china-firewall/ddjnbibkjnpooggbojccbaodjpjcbabg
Descrição View the internet from behind the Great Firewall of China. A simulation for COMP 301.
Tamanho do Arquivo 1.35 MB
Contagem de Instalações 42
Versão Atual 1.2
Última Atualização 2020-08-04
Data de Publicação 2020-03-28
Desenvolvedor ronny.kurland
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}