{
  "manifest_version": 3,
  "name": "Share-Preview",
  "version": "0.0.1",
  "description": "preview social media sharing links",
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_title": "Social Media sharing links preview ",
    "default_icon": "icon-34.png",
    "default_popup": "src/pages/popup/popup.html"
  },
  "content_scripts": [],
  "icons": {
    "128": "icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ]
}