SiteMacro

SiteMacro

Record macros to automatically perform actions or submit forms on user defined websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "version": "0.8",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "icons": {
    "24": "icons/icon-24.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png",
    "96": "icons/icon-96.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_icon": {
      "16": "icons/icon-16.png",
      "32": "icons/icon-32.png"
    },
    "default_title": "__MSG_extensionName__",
    "theme_icons": [
      {
        "light": "icons/icon-w.svg",
        "dark": "icons/icon.svg",
        "size": 16
      },
      {
        "light": "icons/icon-w.svg",
        "dark": "icons/icon.svg",
        "size": 32
      }
    ]
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "options_ui": {
    "page": "options.htm"
  }
}