Fanboard

Fanboard

Transform Your OnlyFans Creator Experience

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDescription__",
  "homepage_url": "https://fanboard.io",
  "version": "0.0.2",
  "version_name": "0.0.2",
  "manifest_version": 3,
  "default_locale": "en",
  "minimum_chrome_version": "88",
  "permissions": [
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "https://app.fanboard.io/*",
    "https://onlyfans.com/api2/*",
    "https://*.onlyfans.com/*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "sentry_rules",
        "enabled": true,
        "path": "sentry_rules.json"
      }
    ]
  },
  "externally_connectable": {
    "matches": [
      "https://app.fanboard.io/*",
      "https://onlyfans.com/*"
    ]
  },
  "icons": {
    "128": "assets/img/128x128.png"
  },
  "background": {
    "service_worker": "background-script.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://onlyfans.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "onlyfans-content-script.js"
      ],
      "css": [
        "injected.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "injected.js"
      ],
      "matches": [
        "https://onlyfans.com/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "assets/img/16x16.png",
      "24": "assets/img/24x24.png",
      "32": "assets/img/32x32.png"
    },
    "default_title": "__MSG_appName__"
  }
}