OnlyLoops

OnlyLoops

Automatically loops all OF videos and enables a right-click menu to save content.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "OnlyLoops",
  "action": {
    "default_popup": "app/popup.html"
  },
  "version": "1.0",
  "description": "Automatically loops all OF videos and enables a right-click menu to save content.",
  "permissions": [
    "scripting",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "*://onlyfans.com/*",
    "https://extensionpay.com/extension/onlyloops*"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.onlyfans.com/*"
    ]
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/ol_text_logo.png",
        "img/ol_status.png",
        "img/ol_helper.png",
        "img/loader.gif",
        "js/service-worker.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://extensionpay.com/extension/onlyloops*"
      ],
      "js": [
        "js/storage.js",
        "js/auth.js"
      ],
      "css": [
        "css/auth.css"
      ]
    },
    {
      "matches": [
        "https://*.onlyfans.com/*",
        "https://extensionpay.com/*"
      ],
      "js": [
        "js/ExtPay.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.onlyfans.com/*"
      ],
      "js": [
        "js/ExtPay.js"
      ]
    },
    {
      "matches": [
        "https://*.onlyfans.com/*"
      ],
      "js": [
        "js/onlyloops.js"
      ],
      "all_frames": false,
      "match_about_blank": false,
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "img/onlyloops_16x.png",
    "32": "img/onlyloops_32x.png",
    "48": "img/onlyloops_48x.png",
    "128": "img/onlyloops_128x.png"
  },
  "manifest_version": 3,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}