China Firewall

China Firewall

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

Merlin
Additional files are visible only to premium users

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
}