Browser Automaton

Browser Automaton

Run remote script to do browser automation

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Browser Automaton",
  "description": "Run remote script to do browser automation",
  "version": "3.5",
  "icons": {
    "16": "application-x-executable-16.png",
    "24": "application-x-executable-24.png",
    "32": "application-x-executable-32.png",
    "48": "application-x-executable-48.png",
    "128": "application-x-executable-128.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "webNavigation",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "service_worker": "application.js"
  },
  "action": {
    "default_icon": "application-x-executable-128.png",
    "default_title": "Browser Automaton"
  },
  "options_ui": {
    "page": "options.html"
  },
  "content_security_policy": {
    "script-src": "self",
    "object-src": "self"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}