AutoReach

AutoReach

The fastest way to find phone numbers for all your outbound needs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "1.0.3",
  "manifest_version": 3,
  "default_locale": "en",
  "background": {
    "service_worker": "background/index.js"
  },
  "options_page": "options.html",
  "permissions": [
    "activeTab",
    "contextMenus",
    "notifications",
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/autoreach_icon16.png",
      "32": "/images/autoreach_icon32.png",
      "48": "/images/autoreach_icon48.png",
      "128": "/images/autoreach_icon128.png"
    }
  },
  "icons": {
    "16": "/images/autoreach_icon16.png",
    "32": "/images/autoreach_icon32.png",
    "48": "/images/autoreach_icon48.png",
    "128": "/images/autoreach_icon128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://autoreach.io/*",
        "*://autoreach.app/*",
        "*://powerdialer-production.herokuapp.com/*"
      ],
      "js": [
        "content_script/index.js"
      ]
    }
  ]
}