Buyers List Builder

Buyers List Builder

Build a Cash Buyer List Fast and Easy

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Buyers List Builder",
  "description": "Build a Cash Buyer List Fast and Easy",
  "version": "1.9.1",
  "browser_action": {
    "default_title": "Facebook Email capture",
    "default_icon": "./images/icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "./images/icon.png",
    "48": "./images/icon.png",
    "128": "./images/icon.png"
  },
  "background": {
    "scripts": [
      "./js/config.js",
      "./js/jquery.min.js",
      "./js/core.js",
      "./js/oauth.js",
      "./js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./js/config.js",
        "./js/core.js",
        "./js/oauth.js",
        "./js/google-sign-in.js"
      ],
      "css": [
        "./css/simpleNotifyStyle.css",
        "./css/google-sign-in.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://facebook-lead-grabber.herokuapp.com/*state=extension_token*"
      ],
      "js": [
        "./js/core.js",
        "./js/oauth.js",
        "./js/oauthContent.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://www.facebook.com/*"
      ],
      "js": [
        "./js/jquery.min.js",
        "./js/simpleNotify.js",
        "./js/content.js"
      ],
      "css": [
        "./css/simpleNotifyStyle.css",
        "./css/content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "images/*.*",
    "*"
  ],
  "client_id": "913411174141-i9dlk0kh6rfk77giteu47qaea4c5im6t.apps.googleusercontent.com",
  "permissions": [
    "activeTab",
    "storage",
    "https://*.googleapis.com",
    "https://localhost:44352/*",
    "https://facebook-email.glitch.me/Account/LoginUserGoogle",
    "https://facebook-lead-grabber.herokuapp.com/*",
    "https://www.facebook.com/*"
  ]
}