Custom Button

Custom Button

Customize a button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Custom Button",
  "short_name": "Custom Button",
  "description": "Customize a button.",
  "version": "1.2.0",
  "permissions": [
    "notifications",
    "storage",
    "tabs"
  ],
  "icons": {
    "24": "images/default-24.png",
    "48": "images/default-64.png",
    "128": "images/default-128.png"
  },
  "action": {},
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "options.html"
  }
}