ConvertSocial Extension

ConvertSocial Extension

A free extension for content creators to monetize any social media

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ConvertSocial Extension",
  "version": "1.8.5",
  "description": "A free extension for content creators to monetize any social media",
  "background": {
    "service_worker": "src/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/popup/index.html",
    "default_icon": {
      "16": "logo-16.png",
      "32": "logo-32.png"
    },
    "default_title": "Create a Referral link with ConvertSocial"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "src/content/index.js"
      ],
      "css": [
        "assets/css/content.chunk.css"
      ],
      "include_globs": [
        "https://yandex.*/search/*",
        "https://www.yandex.*/search/*",
        "https://google.*/search*",
        "https://www.google.*/search*",
        "https://search.yahoo.com/search*",
        "https://www.search.yahoo.com/search*",
        "https://bing.*/search*",
        "https://www.bing.*/search*"
      ]
    }
  ],
  "icons": {
    "16": "logo-16.png",
    "32": "logo-32.png",
    "48": "logo-48.png",
    "128": "logo-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "assets/icon.svg",
        "logo-128.png",
        "logo-48.png",
        "logo-32.png",
        "logo-16.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "homepage_url": "https://convertsocial.net",
  "permissions": [
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "https://*.google.com/*",
    "https://*.google-analytics.com/*",
    "https://*.fas.st/*",
    "https://*.admitad.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://account.convertsocial.net/*"
    ]
  }
}