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.」です。
拡張機能のスクリーンショット
China Firewall拡張機能のCRXファイルをダウンロード
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.
拡張機能の基本情報
名前 | |
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 |
Eメール | [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 } |