Examine source code of MonAmi Note

Inspect and view changes in MonAmi Note 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": "MonAmi Note",
  "description": "This companion extension for MonAmi Note Web/Desktop enables quick note-taking and text clipping while browsing web pages",
  "version": "2.5.218",
  "manifest_version": 3,
  "author": "SimBust Soft",
  "background": {
    "service_worker": "mon_serviceworker.js"
  },
  "action": {
    "default_icon": {
      "16": "images/android-icon-48x48.png",
      "48": "images/android-icon-48x48.png",
      "128": "images/android-icon-48x48.png"
    },
    "default_title": "Show Menu",
    "default_popup": "mon_popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "file://*/*",
        "https://*/*"
      ],
      "js": [
        "lib/jquery.min.js",
        "mon_kon.js",
        "mon_content_script.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "icons": {
    "16": "images/favicon-16x16.png",
    "48": "images/android-icon-48x48.png",
    "128": "images/apple-icon-128x128.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "http://simbust.com/",
    "http://localhost/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "mon_content_style.css",
        "mon_modal_save_clip.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}