Waldo – Search like a pro.

Waldo – Search like a pro.

Waldo helps you find what you need faster – datapoints, contact info, insights, and more – by making your search engine more productive.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Waldo",
  "short_name": "Waldo",
  "version": "4.24.0",
  "description": "Waldo is the fastest way to find high quality data and insights on the web.",
  "permissions": [
    "activeTab",
    "storage",
    "cookies",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "browser_action": {
    "default_title": "Waldo"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "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",
      "all_frames": true,
      "js": [
        "./messageProxyScript.bundle.js"
      ],
      "matches": [
        "*://localhost/*",
        "*://*.waldo.fyi/*",
        "*://*.waldo.run/*"
      ]
    },
    {
      "run_at": "document_start",
      "js": [
        "./waldoSiteScript.bundle.js"
      ],
      "matches": [
        "*://*.waldo.fyi/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "web_accessible_resources": [
    "*",
    "popup.html"
  ]
}