D&B Hoovers Everywhere

D&B Hoovers Everywhere

Boost sales productivity with access to Dun & Bradstreet's company and contact data within your web browser.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "D&B Hoovers Everywhere",
  "version": "3.1.0",
  "manifest_version": 3,
  "description": "Boost sales productivity with access to Dun & Bradstreet's company and contact data within your web browser.",
  "author": "",
  "icons": {
    "128": "images/dnb.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "https://app.avention.com/*",
        "https://app.dnbhoovers.com/*",
        "https://dnb.onelogin.com/*",
        "https://www.dnb.onelogin.com/*",
        "https://www.myaccount.google.com/*",
        "https://myaccount.google.com/*",
        "https://www.accounts.google.com/*",
        "https://accounts.google.com/*",
        "https://*.hoovers.dnb.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "js/content_script.js",
        "js/draggable.js"
      ]
    }
  ],
  "action": {},
  "web_accessible_resources": [
    {
      "resources": [
        "images/DB_AMPERSAND_Pantone.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "webNavigation",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}