Influencer Engage

Influencer Engage

Turn the entire web into an influencer database using the influence.co chrome browser extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Influencer Engage",
  "description": "Turn the entire web into an influencer database using the influence.co chrome browser extension.",
  "version": "0.15",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "inpage.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "128": "icon-color.png"
  },
  "browser_action": {
    "default_icon": "icon-bw.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "https://influence.co/"
  ]
}