Extract Buddy

Extract Buddy

A helpful assistant with collecting business information from the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Extract Buddy",
  "version": "0.0.11",
  "description": "A helpful assistant with collecting business information from the web.",
  "icons": {
    "128": "images/geeksguy.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "images/geeksguy.png",
    "default_popup": "react-popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "*://*.bbb.org/",
    "*://*.superpages.com/",
    "*://*.googleapis.com/"
  ]
}