Textomap: Generate maps from text in seconds

Textomap: Generate maps from text in seconds

Create maps in the same tab as you browse websites, social media, docs, and more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Textomap: Generate maps from text in seconds",
  "description": "Create maps in the same tab as you browse websites, social media, docs, and more",
  "version": "1.4",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "action": {
    "default_icon": {
      "16": "/style/images/icon16.png",
      "48": "/style/images/icon48.png",
      "128": "/style/images/icon128.png"
    }
  },
  "icons": {
    "16": "/style/images/icon16.png",
    "48": "/style/images/icon48.png",
    "128": "/style/images/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery.min.js",
        "js/jquery-ui.min.js",
        "/js/content.js"
      ],
      "css": [
        "/style/style.css"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.local.textomap.com/*",
      "https://*.www.textomap.com/*"
    ]
  }
}