Easy MindMap - Second Brain

Easy MindMap - Second Brain

Learn everything, and make it easy. Easy Mind Map is a tool that helps you learn anything you want to know, fast! Easy Mind Map…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "React App",
  "name": "Easy MindMap - Second Brain",
  "start_url": ".",
  "display": "standalone",
  "theme_color": "#ffffff",
  "background_color": "#ffffff",
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "version": "1.0.3",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_icon": "logo.png"
  },
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./static/js/content.js",
        "bootstrap.js",
        "jquery.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ]
}