OnlyFans Follower

OnlyFans Follower

Extension that will automatically follow users that have expired subscriptions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "OnlyFans Follower",
  "description": "Extension that will automatically follow users that have expired subscriptions.",
  "version": "1.6",
  "manifest_version": 2,
  "icons": {
    "52": "icon.png"
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://onlyfans.com/my/subscribers/expired"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "*://.onlyfans.com/",
    "tabs",
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://cdn.firebase.com https://apis.google.com https://www.gstatic.com; object-src 'self'"
}