Metaphor Extension

Metaphor Extension

Get more from Metaphor! Automatically show data insights without context switching. Boost productivity with Metaphor's extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Metaphor Extension",
  "description": "Get more from Metaphor! Automatically show data insights without context switching. Boost productivity with Metaphor's extension",
  "version": "0.3.5",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "webRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentPage.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "Metaphor Extension",
    "default_icon": {
      "16": "metaphor16.png"
    }
  },
  "options_ui": {
    "page": "option.html",
    "open_in_tab": true
  },
  "icons": {
    "16": "metaphor16.png",
    "48": "metaphor48.png",
    "128": "metaphor128.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "*.png",
        "*.svg"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}