{
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content_guard.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "google_sites_inspector.js"
      ],
      "matches": [
        "*://sites.google.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "enabled": true,
        "id": "blocking_rules",
        "path": "rules.json"
      }
    ]
  },
  "description": "Blocks proxy sites, filter evasion exploits, tab spam, and Google Sites abuse on student Chromebooks. Free forever.",
  "host_permissions": [
    "https://*/*"
  ],
  "icons": {
    "128": "icon128.png",
    "16": "icon16.png",
    "48": "icon48.png"
  },
  "manifest_version": 3,
  "minimum_chrome_version": "111",
  "name": "You Shall Not Pass by TeacherMagic.org",
  "permissions": [
    "tabs",
    "scripting",
    "storage",
    "webNavigation",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback"
  ],
  "storage": {
    "managed_schema": "managed_schema.json"
  },
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "3.0.9"
}