iFans → OnlyFans Bridge

iFans → OnlyFans Bridge

Allows the automatic migration of content from OnlyFans to iFans.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "iFans → OnlyFans Bridge",
  "description": "Allows the automatic migration of content from OnlyFans to iFans.",
  "version": "0.1.0",
  "permissions": [
    "webRequest",
    "storage",
    "background",
    "unlimitedStorage",
    "declarativeNetRequest",
    "power"
  ],
  "host_permissions": [
    "https://onlyfans.com/*",
    "https://*.ifans.com/*"
  ],
  "options_page": "example.html",
  "background": {
    "service_worker": "src/background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/content.bundle.js"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules_1.json"
      }
    ]
  }
}