Biggest Fan Pro

Biggest Fan Pro

Its going to smash emojis in anyone's fb live to create more engagement and to be the biggest fan of someone.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Biggest Fan Pro",
  "description": "Its going to smash emojis in anyone's fb live to create more engagement and to be the biggest fan of someone.",
  "version": "1.4.09",
  "short_name": "BFP",
  "icons": {
    "16": "images/1637580065798-smallLogo.png",
    "48": "images/1637580065847-mediumLogo.png",
    "128": "images/1637580065895-largeLogo.png"
  },
  "action": {
    "default_popup": "login.html",
    "default_title": "Biggest Fan Pro"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*",
        "*://facebook.com/*"
      ],
      "js": [
        "js/vendor.js",
        "js/content_script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background-wrapper.js"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "*://*.facebook.com/*",
    "*://facebook.com/*"
  ]
}