Examine source code of UpSide

Inspect and view changes in UpSide 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": "__MSG_namechrome__",
  "description": "__MSG_description__",
  "default_locale": "zh_TW",
  "version": "1.1.7",
  "icons": {
    "16": "images/artsolutions60.png",
    "32": "images/artsolutions60.png",
    "48": "images/artsolutions60.png",
    "128": "images/artsolutions60.png"
  },
  "action": {
    "default_title": "__MSG_title__"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "scripting",
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "./getLineData.js",
        "./getOutlookData.js",
        "./teamsMeet.js",
        "./googleMeet.js",
        "./communictaion.js",
        "./contentUI.js"
      ],
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}