Extension Webpack Template

Extension Webpack Template

An extension program I use to test is mainly used to get familiar with the release process and see what materials are needed in the release process

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Template for Chrome Extension (Manifest v3) with webpack hot reloading",
  "version": "1.0.0",
  "name": "Chrome Extension Webpack Template",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://google.com/*"
      ],
      "js": [
        "content.bundle.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "browser_specific_settings": {
    "gecko": {
      "id": "{7a8d634c-6644-4853-99fd-dc5f86c072ae}"
    }
  }
}