Former2 Helper

Former2 Helper

Helps avoid CORS issues with former2.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Former2 Helper",
  "version": "1.66",
  "manifest_version": 3,
  "description": "Helps avoid CORS issues with former2.com",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "background": {
    "service_worker": "bg.js"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "host_permissions": [
    "https://*.aws.amazon.com/*",
    "https://*.amazonaws.com/*",
    "https://*.amazonaws.com.cn/*",
    "https://developer.amazon.com/*",
    "http://localhost:4566/*",
    "http://*.localhost:4566/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://former2.com/*",
      "https://*.former2.com/*",
      "http://127.0.0.1/*",
      "https://127.0.0.1/*",
      "http://localhost/*",
      "https://localhost/*"
    ]
  }
}