China Firewall
View the internet from behind the Great Firewall of China. A simulation for COMP 301.
Τι είναι το China Firewall;
Το China Firewall είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ronny.kurland, και η κύρια λειτουργία του είναι "View the internet from behind the Great Firewall of China. A simulation for COMP 301.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης China Firewall
Λήψη αρχείων επέκτασης 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 |
Ηλεκτρονικό ταχυδρομείο | [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 } |