Simple proxy helper

Simple proxy helper

Set proxy for Google Chrome browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "0.0.15",
  "manifest_version": 3,
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "name": "__MSG_appName__",
  "icons": {
    "128": "images/on.png"
  },
  "permissions": [
    "proxy",
    "privacy"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "images/off.png",
    "default_title": "__MSG_title__",
    "default_popup": "popup.html"
  },
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://*.interprefy.com/*",
      "*://*.interpret.world/*",
      "*://interpret.world/*"
    ]
  },
  "update_url": "http://clients2.google.com/service/update2/crx",
  "minimum_chrome_version": "88"
}