GPT Mind Maps Maker - ChatGPT Create Mind Map

GPT Mind Maps Maker - ChatGPT Create Mind Map

AI-powered Mind Mapping tool based on ChatGPT, can quickly generate a mind map, and you can continue to edit it in a WYSIWYG way.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "manifest_version": 3,
  "version": "5.4",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "permissions": [
    "tabs",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*.pdf"
      ],
      "run_at": "document_idle",
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/16.png",
      "48": "/images/48.png",
      "128": "/images/128.png"
    }
  },
  "icons": {
    "16": "/images/16.png",
    "48": "/images/48.png",
    "128": "/images/128.png"
  }
}