Best whatsapp™ exporter

Best whatsapp™ exporter

Best whatsapp™ exporter

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Best whatsapp™ exporter",
  "version": "0.0.1",
  "description": "Best whatsapp™ exporter",
  "options_ui": {
    "page": "src/pages/options/index.html"
  },
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-128.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "js": [
        "src/pages/content/index.js"
      ],
      "matches": [
        "*://*.whatsapp.com/*"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "devtools_page": "src/pages/devtools/index.html",
  "web_accessible_resources": [
    {
      "resources": [
        "contentStyle.css",
        "icon-128.png",
        "wapi.js"
      ],
      "matches": [
        "*://*.whatsapp.com/*"
      ]
    }
  ],
  "default_locale": "en"
}