Whale

Whale

Surface knowledge when and where your team needs it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Whale",
  "manifest_version": 3,
  "version": "5.9.11",
  "description": "Surface knowledge when and where your team needs it.",
  "action": {
    "default_title": "WHALE"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_whale.js"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "exclude_matches": [
        "https://vars.hotjar.com/*",
        "https://www.google.com/recaptcha/*",
        "https://js.chargebee.com/*",
        "https://s0.2mdn.net/ads/*",
        "https://*.googlesyndication.com/*",
        "https://*.statuspage.io/embed/frame"
      ],
      "js": [
        "content_match.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "script-src": "'self' 'unsafe-eval'",
    "object-src": "'self'"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "*"
      ]
    }
  ],
  "icons": {
    "128": "icons/logo.png"
  },
  "permissions": [
    "activeTab",
    "identity",
    "storage",
    "webNavigation"
  ],
  "host_permissions": [
    "*://*/* "
  ],
  "externally_connectable": {
    "matches": [
      "https://*.usewhale.io/*",
      "*://localhost/*"
    ]
  }
}