SocialiQ - Influencer Marketing Research Tool

SocialiQ - Influencer Marketing Research Tool

Instagram, Youtube & Facebook Analytics firefox extension. Simply organize your social media research with SocialiQ

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "SocialiQ - Influencer Marketing Research Tool",
  "version": "1.4",
  "description": "Instagram, Youtube & Facebook Analytics chrome extension. Simply organize your social media research with SocialiQ",
  "permissions": [
    "tabs",
    "storage",
    "webRequest",
    "*://*.iq.exchange.impulze.ai/*",
    "*://*.instagram.com/",
    "*://*.youtube.com/",
    "*://*.facebook.com/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "instaStart.js"
      ],
      "all_frames": false
    },
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "instaScript.js"
      ],
      "css": [
        "css/style.css"
      ],
      "all_frames": false
    },
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "ytScript.js"
      ],
      "css": [
        "css/style.css"
      ],
      "all_frames": false
    },
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "fbScript.js"
      ],
      "css": [
        "css/style.css"
      ],
      "all_frames": false
    },
    {
      "matches": [
        "*://*.socialiq.impulze.ai/*"
      ],
      "run_at": "document_end",
      "js": [
        "socialIQ.js"
      ],
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "css/svg/*.svg",
    "images/*.png",
    "*.ttf",
    "*.eot",
    "*.svg",
    "*.woff",
    "*.woff2"
  ],
  "icons": {
    "16": "images/hyper_light-16.png",
    "32": "images/hyper_light-32.png",
    "48": "images/hyper_light-48.png",
    "64": "images/hyper_light-64.png",
    "128": "images/hyper_light-128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/hyper_light-16.png",
      "32": "images/hyper_light-32.png",
      "48": "images/hyper_light-48.png",
      "64": "images/hyper_light-64.png",
      "128": "images/hyper_light-128.png"
    },
    "default_popup": "popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "42.0"
    }
  },
  "manifest_version": 2
}