Arex Chrome Extension

Arex Chrome Extension

Provides more capabilities for Arex

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Arex Chrome Extension",
  "version": "1.0.70",
  "manifest_version": 3,
  "description": "Provides more capabilities for Arex",
  "homepage_url": "http://www.arextest.com",
  "icons": {
    "128": "logo-128.png"
  },
  "permissions": [
    "*://*/*",
    "http://*/*",
    "https://*/*",
    "http://127.0.0.1:8002/*",
    "http://127.0.0.1:6001/*",
    "cookies"
  ],
  "host_permissions": [
    "*://*/*",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "interceptor.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Arex",
    "default_icon": "logo-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content-scripts.js"
      ],
      "run_at": "document_start"
    }
  ]
}