G Search Leads Generator

G Search Leads Generator

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": "G Search Leads Generator",
  "version": "1.0.0",
  "description": "Extract business information easily from publicly available data on websites for sole purpose for generating leads",
  "permissions": [
    "identity",
    "identity.email",
    "downloads",
    "notifications",
    "storage"
  ],
  "browser_action": {
    "default_icon": {
      "48": "images/logo_48.png",
      "128": "images/logo_48.png"
    },
    "default_title": "G Search Leads Generator"
  },
  "icons": {
    "48": "images/logo_48.png",
    "128": "images/logo_128.png"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com 'unsafe-eval'; object-src 'self'",
  "background": {
    "scripts": [
      "libs/jquery-3.1.1.min.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.google.com/search?*"
      ],
      "js": [
        "libs/jquery-3.1.1.min.js",
        "contentscript/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "images/*"
  ],
  "manifest_version": 2
}