Location Tap

Location Tap

Business Leads Without Limits!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Location Tap",
  "description": "Business Leads Without Limits!",
  "version": "3.0.5",
  "short_name": "LT",
  "browser_action": {
    "default_title": "Location Tap"
  },
  "icons": {
    "16": "./assets/logo_16.png",
    "48": "./assets/logo_48.png",
    "128": "./assets/logo_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.google.com/search*",
        "*://*.google.co.in/search*"
      ],
      "js": [
        "js/vendor.js",
        "js/helper.js",
        "js/content_place.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "js/background.js",
      "js/helper.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage",
    "*://api.unlimitedbusinessleads.io/*",
    "*://google.com/search?*"
  ],
  "web_accessible_resources": [
    "assets/*",
    "js/*"
  ]
}