GlobalDatabase: B2B Emails & Sales Automation

GlobalDatabase: B2B Emails & Sales Automation

See any Email or Phone Number of any Lead at a glance while browsing LinkedIn.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "version": "2.6.1",
  "description": "__MSG_description__",
  "short_name": "__MSG_slug__",
  "default_locale": "en",
  "homepage_url": "https://globaldatabase.com",
  "icons": {
    "16": "assets/png/icon16.png",
    "32": "assets/png/icon32.png",
    "48": "assets/png/icon48.png",
    "96": "assets/png/icon96.png"
  },
  "permissions": [
    "storage"
  ],
  "action": {},
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "import-content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://platform.globaldatabase.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "node_modules/tinymce/**/*.js",
        "node_modules/tinymce/**/*.css"
      ],
      "matches": [
        "*://*.linkedin.com/*"
      ]
    },
    {
      "resources": [
        "chunks/*-*.js",
        "content.js"
      ],
      "matches": [
        "<all_urls>",
        "https://www.linkedin.com/*",
        "https://dashboard-api.globaldatabase.com/*",
        "https://marketing-api.globaldatabase.com/*"
      ]
    }
  ],
  "host_permissions": [
    "https://www.linkedin.com/*",
    "https://dashboard-api.globaldatabase.com/*",
    "https://marketing-api.globaldatabase.com/*"
  ]
}