China Firewall
View the internet from behind the Great Firewall of China. A simulation for COMP 301.
China Firewall क्या है?
China Firewall ronny.kurland द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View the internet from behind the Great Firewall of China. A simulation for COMP 301."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में China Firewall एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.
एक्सटेंशन की मूल जानकारी
नाम | |
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 } |