Examine source code of HomeSchool助手

Inspect and view changes in HomeSchool助手 source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "HomeSchool助手",
  "version": "0.0.2",
  "description": "A social learning helper for homeschoolers and self-learners",
  "content_security_policy": {
    "extension_pages": "frame-src 'self' https://*.airpbl.com; script-src 'self'; object-src 'self'; img-src 'self' data: https: http: blob:; media-src 'self' blob:"
  },
  "permissions": [
    "sidePanel",
    "storage",
    "notifications",
    "tabs",
    "scripting",
    "geolocation",
    "activeTab"
  ],
  "host_permissions": [
    "<all_urls>",
    "https://*.airpbl.com/*",
    "https://airpbl.whereby.com/*"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+B",
        "mac": "Command+B"
      }
    }
  },
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "HomeSchool助手",
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "externally_connectable": {
    "matches": [
      "https://*.airpbl.com/*"
    ]
  }
}