Examine source code of focusPang ai [for Chromebook/Chrome/Edge]

Inspect and view changes in focusPang ai [for Chromebook/Chrome/Edge] 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",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "default_locale": "en",
  "version": "2.1.1",
  "manifest_version": 3,
  "homepage_url": "https://focuspang.com",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "icons": {
    "16": "/images/focuspangForChrome_16.png",
    "32": "/images/focuspangForChrome_32.png",
    "48": "/images/focuspangForChrome_48.png",
    "128": "/images/focuspangForChrome_128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.js",
        "*.css",
        "*.png",
        "*.jpg",
        "*.txt",
        "*.html",
        "*.wav"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "build/contents.js"
      ],
      "css": [
        "assets/css/context-select-menu.css",
        "assets/css/default.css"
      ]
    }
  ],
  "permissions": [
    "storage",
    "management",
    "tabs",
    "notifications",
    "activeTab",
    "externally_connectable",
    "alarms"
  ],
  "host_permissions": [
    "*://*.focuspang.com/*",
    "*://*.focuspang.ai/*",
    "*://*.focuspangdownload.com/*",
    "http://localhost:3000/*"
  ],
  "optional_host_permissions": [
    "<all_urls>"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.naver.com/*",
      "*://*.focuspang.com/*",
      "*://*.focuspang.ai/*",
      "*://*.focuspangdownload.com/*",
      "http://localhost:3000/*"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox allow-scripts; script-src 'self' 'unsafe-eval' 'https://fonts.googleapis.com/' 'https://use.fontawesome.com/' 'https://fonts.gstatic.com/'; object-src 'self'"
  }
}