LiveHosts

LiveHosts

Switch your host/IP mappings in real time without editing your hosts file

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "LiveHosts",
  "version": "2.0.0",
  "icons": {
    "16": "icons/livehosts-16.png",
    "48": "icons/livehosts-48.png",
    "128": "icons/livehosts-128.png"
  },
  "description": "Switch your host/IP mappings in real time without editing your hosts file",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_page": "options.html",
  "action": {
    "default_icon": {
      "19": "icons/livehosts-19.png",
      "38": "icons/livehosts-38.png"
    },
    "default_popup": "popup/popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/popup/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "incognito": "split",
  "permissions": [
    "declarativeNetRequestWithHostAccess",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ]
}