FansApp

FansApp

The extension helps you promote content on OnlyFans

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "FansApp",
  "version": "1.4.8",
  "description": "__MSG_extDescription__",
  "icons": {
    "512": "assets/img/logo.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "scripting",
    "unlimitedStorage",
    "cookies",
    "webRequest",
    "notifications"
  ],
  "host_permissions": [
    "*://onlyfans.com/*",
    "*://fansapp.co/*"
  ],
  "action": {
    "default_icon": "assets/img/logo.png",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://onlyfans.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/sha1.js",
        "js/cryptojs.js",
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/img/*"
      ],
      "matches": [
        "*://onlyfans.com/*"
      ]
    }
  ]
}