Downloader for OnlyFans.com
Downloader for onlyfans.com. An extension that adds download buttons for OnlyFans images and videos.
Что такое Downloader for OnlyFans.com?
Downloader for OnlyFans.com - это расширение Chrome, разработанное Alex G, и его основная функция - "Downloader for onlyfans.com. An extension that adds download buttons for OnlyFans images and videos.".
Снимки экрана расширения
Скачать файл CRX расширения Downloader for OnlyFans.com
Скачайте файлы расширений Downloader for OnlyFans.com в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Notice: You need to follow/subscribe to the onlyfans.com creator first. *No paywall is bypassed.* *No unauthorized access or download is encouraged, facilitated or enabled.* Features: * Download OnlyFans.com videos. * Download OnlyFans.com images/photos. Disclaimer: OnlyFans is a registered trademark of Fenix International Limited. This Chrome extension (Downloader for OnlyFans.com) isn't in any way affiliated with, sponsored by, or endorsed by Fenix International Limited.
Основная информация о расширении
Название | |
ID | pdbbabjcnanbkimdgcdfbnghhmchomnh |
Официальный URL | https://chrome.google.com/webstore/detail/downloader-for-onlyfansco/pdbbabjcnanbkimdgcdfbnghhmchomnh |
Описание | Downloader for onlyfans.com. An extension that adds download buttons for OnlyFans images and videos. |
Размер файла | 177 KB |
Количество установок | 300,000 |
Текущая Версия | 4.5.14 |
Последнее Обновление | 2021-12-08 |
Дата публикации | 2020-09-17 |
Рейтинг | 4.13/5 Всего 221 оценок |
Разработчик | Alex G |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы политики конфиденциальности | https://jgao.me/privacy-policy |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Downloader for OnlyFans.com", "version": "4.5.14", "description": "Downloader for onlyfans.com. An extension that adds download buttons for OnlyFans images and videos.", "icons": { "128": "\/assets\/icon128.png", "48": "\/assets\/icon48.png", "16": "\/assets\/icon16.png" }, "browser_action": { "default_icon": "\/assets\/icon16.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.onlyfans.com\/*" ], "js": [ "content.js", "jquery-3.4.1.min.js" ], "run_at": "document_start" } ], "content_security_policy": "script-src 'self' 'sha256-OS4ZP4ITBPTiH6iz\/lNZ3jYl04iBf4QC2VQrEjJTZK4='; object-src 'self'", "permissions": [ "storage", "webRequest", "downloads", "*:\/\/*.onlyfans.com\/*" ], "background": { "scripts": [ "b.js" ], "persistent": true } } |