ATFC

ATFC

An extension for automating your browser by connecting blocks

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "An extension for automating your browser by connecting blocks",
  "version": "1.0.0",
  "manifest_version": 3,
  "name": "ATFC",
  "action": {
    "default_icon": {
      "128": "icon-logo.png"
    },
    "default_title": "ATFC",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "icons": {
    "128": "icon-logo.png"
  },
  "commands": {
    "open-dashboard": {
      "suggested_key": {
        "default": "Alt+A",
        "mac": "Alt+A"
      },
      "description": "Open the dashboard"
    },
    "element-picker": {
      "suggested_key": {
        "default": "Alt+P",
        "mac": "Alt+P"
      },
      "description": "Open element picker"
    }
  },
  "content_scripts": [
    {
      "js": [
        "contentScript.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "http://localhost/*",
        "*://*.atfc.pro/*",
        "*://atfc.vercel.app/*"
      ],
      "js": [
        "webService.bundle.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "permissions": [
    "tabs",
    "proxy",
    "alarms",
    "storage",
    "debugger",
    "scripting",
    "webNavigation",
    "unlimitedStorage"
  ],
  "optional_permissions": [
    "clipboardRead",
    "downloads",
    "contextMenus",
    "notifications",
    "cookies"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "optional_host_permissions": [],
  "web_accessible_resources": [
    {
      "resources": [
        "/elementSelector.css",
        "/Inter-roman-latin.var.woff2",
        "/icon-logo.png",
        "/locales/*",
        "elementSelector.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "sandbox": {
    "pages": [
      "/sandbox.html"
    ]
  },
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
  }
}