Hoverflow

Hoverflow

Hover to preview any link, without leaving your tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.2.5",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "/icons/16.png",
    "32": "/icons/32.png",
    "48": "/icons/48.png",
    "128": "/icons/128.png"
  },
  "permissions": [
    "storage",
    "scripting",
    "activeTab",
    "declarativeNetRequestWithHostAccess"
  ],
  "optional_permissions": [
    "bookmarks"
  ],
  "host_permissions": [
    "https://*.wikipedia.org/*"
  ],
  "optional_host_permissions": [
    "https://*/*",
    "http://localhost/*",
    "http://localhost:*/*",
    "http://127.0.0.1/*",
    "http://127.0.0.1:*/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://hoverflow.io/*"
    ]
  },
  "background": {
    "service_worker": "src/serviceWorker.js"
  },
  "action": {
    "default_title": "__MSG_actionTitle__",
    "default_icon": {
      "16": "/icons/grey/16.png",
      "32": "/icons/grey/32.png",
      "48": "/icons/grey/48.png",
      "128": "/icons/grey/128.png"
    }
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "frameRules",
        "path": "rules.json",
        "enabled": true
      }
    ]
  },
  "options_page": "settings.html"
}