FollowOF - OnlyFans Fan Follower Tool

FollowOF - OnlyFans Fan Follower Tool

An automation tool to speed up repetitive actions, save time and increase sub retention 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,
  "name": "FollowOF - OnlyFans Fan Follower Tool",
  "description": "An automation tool to speed up repetitive actions, save time and increase sub retention on Onlyfans.",
  "version": "0.0.0.2",
  "background": {
    "service_worker": "/background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://followof.com/*"
      ],
      "js": [
        "/content-script.js"
      ]
    },
    {
      "matches": [
        "https://onlyfans.com/*"
      ],
      "js": [
        "/onlyfans.js"
      ],
      "css": [
        "/css/onlyfans.css"
      ]
    }
  ],
  "icons": {
    "16": "/icons/16.png",
    "32": "/icons/32.png",
    "48": "/icons/48.png",
    "128": "/icons/128.png"
  },
  "host_permissions": [
    "https://onlyfans.com/*",
    "https://followof.com/*"
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "webRequest",
    "declarativeNetRequestWithHostAccess"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}