Onlywishlist Vault Downloader

Onlywishlist Vault Downloader

Download all your images from your OnlyFans Vault.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Onlywishlist Vault Downloader",
  "version": "0.0.8",
  "manifest_version": 2,
  "description": "Download all your images from your OnlyFans Vault.",
  "homepage_url": "https://onlywishlist.com",
  "icons": {
    "16": "icons/16x16.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "browser_action": {
    "default_title": "Onlywishlist Vault Downloader",
    "default_popup": "popup.html"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "activeTab",
    "downloads"
  ],
  "content_security_policy": "default-src 'self';",
  "content_scripts": [
    {
      "matches": [
        "https://onlyfans.com/my/vault"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}