Examine source code of LatexToCalc

Inspect and view changes in LatexToCalc 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": "LatexToCalc",
  "version": "1.1.2",
  "description": "Translate LaTeX text from clipboard to a calculator compatible format.",
  "permissions": [
    "clipboardRead",
    "clipboardWrite",
    "activeTab",
    "scripting",
    "commands"
  ],
  "host_permissions": [
    "https://kampus.sanomapro.fi/*",
    "https://math-demo.abitti.fi/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://kampus.sanomapro.fi/*",
        "https://math-demo.abitti.fi/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "translate-clipboard": {
      "suggested_key": {
        "default": "Ctrl+Shift+Z",
        "mac": "Command+Shift+Z"
      },
      "description": "Translate clipboard"
    }
  },
  "icons": {
    "48": "icon.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "icon.png"
    }
  }
}