SocialFinder

SocialFinder

App to analyse and add Instagram Influencers to Socialkyte.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SocialFinder",
  "version": "3.3",
  "description": "App to analyse and add Instagram Influencers to Socialkyte.",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "tabs",
    "https://www.instagram.com/"
  ],
  "content_security_policy": "script-src 'self' https://maps.googleapis.com https://maps.gstatic.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "https://www.instagram.com/*",
        "https://staging.socialkyte.com/*",
        "https://socialkyte.com/*",
        "<all_urls>",
        "http://localhost:8000/*",
        "http://*/campaigns/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "iconn.png",
    "default_popup": "popup.html",
    "default_title": "Social Finder"
  }
}