Business Leads Generation Tool

Business Leads Generation Tool

Extract business information easily from publicly available data on websites for sole purpose for generating leads.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Business Leads Generation Tool",
  "version": "1.0",
  "description": "Extract business information easily from publicly available data on websites for sole purpose for generating leads.",
  "permissions": [
    "identity",
    "identity.email",
    "webRequest",
    "downloads",
    "notifications",
    "storage"
  ],
  "browser_action": {
    "default_icon": {
      "48": "images/logo_48.png",
      "128": "images/logo_128.png"
    },
    "default_title": "Business Leads Generation Tool"
  },
  "icons": {
    "48": "images/logo_48.png",
    "128": "images/logo_128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "background": {
    "scripts": [
      "libs/jquery-3.1.1.min.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.justdial.com/*"
      ],
      "js": [
        "libs/jquery-3.1.1.min.js",
        "contentscript/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "images/*"
  ],
  "manifest_version": 2
}