OnlyFans Downloader

Free downloader for OnlyFans content and media

OnlyFans Downloader là gì?

OnlyFans Downloader là một tiện ích mở rộng Chrome được phát triển bởi John Wills, và tính năng chính của nó là "Free downloader for OnlyFans content and media".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng OnlyFans Downloader

Tải xuống các tệp mở rộng OnlyFans Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Want to store your favourite content offline for undisclosable purposes? 
This might just help you!

This is an easy-to-use content downloader for the OnlyFans platform. 
Use it via the download buttons displayed on top of downloadable content.

Notice:
This extension does not bypass authorization to access content
Unauthorized access or downloading is highly discouraged.

Current features:
- Download photos / videos from user posts
    Photos and videos from the feed will have a download button on top of them.
    You can only download media that is unlocked

- Download photos / videos from user messages
    Photos and videos from the chats will have a download button on top of them.
    You can only download media that is unlocked


- Bulk download: download all content from a post / message
    If a post has multiple media files in it, a "Download All" button will be displayed under said media.


- Media page download
    Download directly from the grid-view media page of the model

Features that might work (haven't tested them, my models don't post these kinds of media):
- Downloading audio from posts / messages
- Downloading GIFS from posts / messages


Future features:
- Story downloader
- Download all user posts at once

Any suggestions are more than welcomed and if you encounter any bugs, just leave some bad reviews describing them and I'll look into it.

Disclaimer:
OnlyFans is a registered trademark of Fenix International Ltd. This Chrome extension isn't affiliated with, sponsored by, or endorsed by Fenix International Ltd.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên OnlyFans Downloader OnlyFans Downloader
ID kannclgbcpfmmmkhahdbhjlcaidhldhj
URL Chính Thức https://chrome.google.com/webstore/detail/onlyfans-downloader/kannclgbcpfmmmkhahdbhjlcaidhldhj
Mô tả Free downloader for OnlyFans content and media
Kích Thước Tệp 64.64 KB
Số Lần Cài Đặt 7,000
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2022-07-11
Ngày Phát Hành 2022-06-22
Đánh Giá 3.75/5 Tổng số 8 Đánh Giá
Nhà Phát Triển John Wills
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "OnlyFans Downloader",
    "version": "1.0.4",
    "description": "Free downloader for OnlyFans content and media",
    "icons": {
        "128": "\/assets\/icon_128.png",
        "48": "\/assets\/icon_48.png",
        "16": "\/assets\/icon_16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.onlyfans.com\/*"
            ],
            "js": [
                "posts.js",
                "messages.js",
                "userMedia.js",
                "userNames.js",
                "stories.js",
                "interceptor.js",
                "analytics.js",
                "common.js",
                "jquery-3.6.0.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "cookies",
        "downloads",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*.onlyfans.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "interceptor_script.js"
            ],
            "matches": [
                "*:\/\/*.onlyfans.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "action": {
        "default_icon": "\/assets\/icon_16.png"
    }
}