Collector for onlyfans

Collector for onlyfans

Download content from your OnlyFans/Fansly active subscriptions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Collector for onlyfans",
  "description": "Download content from your OnlyFans/Fansly active subscriptions",
  "version": "1.0.0",
  "manifest_version": 3,
  "icons": {
    "20": "./icons/ofc_20.png",
    "50": "./icons/ofc_50.png",
    "200": "./icons/ofc_200.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.fansly.com/*",
        "https://*.onlyfans.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "20": "./icons/ofc_20.png",
      "50": "./icons/ofc_50.png",
      "200": "./icons/ofc_200.png"
    }
  },
  "permissions": [
    "storage",
    "tabs",
    "unlimitedStorage",
    "downloads",
    "cookies"
  ],
  "host_permissions": [
    "https://*.fansly.com/*",
    "https://*.onlyfans.com/*",
    "https://*.gitlab.com/*"
  ]
}