Examine source code of FinalMind

Inspect and view changes in FinalMind 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
{
  "name": "FinalMind",
  "version": "1.0.22",
  "manifest_version": 3,
  "description": "FinalMind是一款简单易用的思维导图工具,适用于各种场景,如头脑风暴、项目管理、演示文稿大纲等。它支持在线使用,可以在不同设备上轻松创建和编辑思维导图。",
  "permissions": [
    "tabs"
  ],
  "background": {
    "service_worker": "extension/background.js"
  },
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "action": {
    "default_popup1": "popup.html",
    "default_icon": {
      "16": "icons/16x16.png",
      "32": "icons/32x32.png",
      "48": "icons/48x48.png",
      "128": "icons/128x128.png"
    }
  },
  "omnibox": {
    "keyword": "mind"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/logo.png",
        "/assets/images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "extension/content_scripts.js"
      ],
      "matches": [
        "http://lingyun.net/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}