Examine source code of Melanto Calculator

Inspect and view changes in Melanto Calculator 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": "Melanto Calculator",
  "short_name": "Calculator",
  "description": "One different calculator app...",
  "version": "4.0.0.0",
  "app": {
    "launch": {
      "local_path": "index.html"
    }
  },
  "background": {
    "scripts": [
      "install.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "16.png",
    "128": "128.png"
  },
  "manifest_version": 2,
  "offline_enabled": true,
  "permissions": [
    "clipboardRead",
    "clipboardWrite"
  ],
  "options_page": "options_page/index.html"
}