Influencer research and outreach tool

Influencer research and outreach tool

Create your own influencer database while your are browsing and analyze their metrics with a single click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Influencer research and outreach tool",
  "version": "2.1.1",
  "manifest_version": 2,
  "description": "Create your own influencer database while your are browsing and analyze their metrics with a single click.",
  "icons": {
    "16": "icons/icon-16.png",
    "128": "icons/icon-128.png"
  },
  "background": {
    "scripts": [
      "scripts/livereload.js",
      "scripts/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "tabs",
    "storage",
    "https://*.instagram.com/*",
    "http://*.instagram.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.instagram.com/*",
        "https://*.instagram.com/*",
        "http://*.twitter.com/*",
        "https://*.twitter.com/*",
        "http://*.youtube.com/*",
        "https://*.youtube.com/*"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "css": [
        "styles/main.css"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "icons/icon-19.png",
      "38": "icons/icon-38.png"
    },
    "default_title": "Influencity",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "*.svg",
    "*.png"
  ]
}