Examine source code of Simulation Tool

Inspect and view changes in Simulation Tool 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": "Simulation Tool",
  "version": "1.1.7",
  "description": "Momenta Simulation Tool. Help users to simulate the production process.",
  "permissions": [
    "activeTab"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "plugin/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.momenta.works/*"
      ],
      "js": [
        "plugin/content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "index.html"
  },
  "icons": {
    "48": "icon.png"
  }
}