Copy Content to Fanvue

Copy Content to Fanvue

The extension allows you to copy your content from OnlyFans to Fanvue.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Copy Content to Fanvue",
  "version": "0.0.1",
  "description": "The extension allows you to copy your content from OnlyFans to Fanvue.",
  "homepage_url": "https://fanvue.com",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png",
    "512": "icon-512.png"
  },
  "permissions": [
    "cookies",
    "scripting",
    "tabs"
  ],
  "host_permissions": [
    "*://*.onlyfans.com/*",
    "*://onlyfans.com/*"
  ],
  "background": {
    "service_worker": "background.js",
    "matches": [
      "https://*.fanvue.com/*",
      "https://fanvue.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.fanvue.com/*",
        "https://fanvue.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {}
}