Waldo – Search like a pro.

Waldo – Search like a pro.

Waldo is the fastest way to find high quality data and insights on the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Waldo – Search like a pro.",
  "short_name": "Waldo",
  "version": "4.24.0",
  "description": "Waldo is the fastest way to find high quality data and insights on the web.",
  "permissions": [
    "storage",
    "cookies",
    "declarativeNetRequest",
    "tabGroups"
  ],
  "omnibox": {
    "keyword": "w"
  },
  "icons": {
    "48": "./assets/icon.48.png",
    "128": "./assets/icon.128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "js": [
        "./contentScript.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "run_at": "document_idle",
      "js": [
        "./extractorScript.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "run_at": "document_start",
      "js": [
        "./waldoSiteScript.bundle.js"
      ],
      "matches": [
        "*://*.waldo.fyi/*",
        "*://*.waldo.run/*",
        "*://localhost/*"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*",
        "popup.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://*.waldo.fyi/*",
      "*://*.waldo.run/*"
    ]
  },
  "action": {
    "default_title": "Waldo"
  },
  "content_security_policy": {},
  "host_permissions": [
    "<all_urls>"
  ]
}