Kontematik

Kontematik

AI Copywriting assistant

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Kontematik",
  "version": "1.0.0",
  "description": "AI Copywriting assistant",
  "browser_action": {
    "default_icon": "./assets/icon-512.png",
    "default_popup": "./dist/popup/index.html"
  },
  "background": {
    "scripts": [
      "./dist/background/index.global.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./dist/content/index.global.js"
      ]
    },
    {
      "matches": [
        "https://app.hubspot.com/*",
        "https://*.hubspotpreview-na1.com/*"
      ],
      "js": [
        "./dist/background/inline.global.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://*.kontematik.com/*",
        "http://localhost:8000/*"
      ],
      "js": [
        "./dist/content/authenticator.global.js"
      ]
    }
  ],
  "icons": {
    "16": "./assets/icon-512.png",
    "48": "./assets/icon-512.png",
    "128": "./assets/icon-512.png"
  },
  "permissions": [
    "tabs",
    "unlimitedStorage",
    "storage"
  ]
}