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 |
官方網址 | 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 } |