Pod Extension

Pod Extension

Pod: AI Workspace for Sales

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pod Extension",
  "description": "Pod: AI Workspace for Sales",
  "version": "0.0.0.8",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Chrome Extension for Pod Web App"
  },
  "icons": {
    "16": "logo192.png",
    "48": "logo192.png",
    "128": "logo192.png"
  },
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./static/js/content.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "index.html"
      ]
    }
  ]
}