Threads Video Downloader - Threadster

Download Threads videos and images using Threadster.

Что такое Threads Video Downloader - Threadster?

Threads Video Downloader - Threadster - это расширение Chrome, разработанное https://threadster.app, и его основная функция - "Download Threads videos and images using Threadster.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Threads Video Downloader - Threadster

Скачайте файлы расширений Threads Video Downloader - Threadster в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Threadster is an online tool to download videos and images from Threads. The Threadster extension makes it extremely easy to download media from the Threads.net website.

A Download button will appear below every Thread containing media. Clicking on the Download button will take you straight to the download page where you can download any media from that particular Thread including images and videos.                    

Основная информация о расширении

Название Threads Video Downloader - Threadster Threads Video Downloader - Threadster
ID dbapeonhbhkmajmjgpcmlikkjnhbbncm
Официальный URL https://chromewebstore.google.com/detail/threads-video-downloader/dbapeonhbhkmajmjgpcmlikkjnhbbncm
Описание Download Threads videos and images using Threadster.
Размер файла 54.75 KB
Количество установок 252
Текущая Версия 1.1.1
Последнее Обновление 2023-08-26
Дата публикации 2023-07-17
Рейтинг 5.00/5 Всего 8 оценок
Разработчик https://threadster.app
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://threadster.app
URL страницы помощи https://threadster.app/contact-us
URL страницы политики конфиденциальности https://aculix.com/privacy-policy
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.1.1",
    "description": "Download Threads videos and images using Threadster.",
    "name": "Threads Video Downloader - Threadster",
    "manifest_version": 3,
    "icons": {
        "16": "src\/icons\/icon-16.png",
        "32": "src\/icons\/icon-32.png",
        "48": "src\/icons\/icon-48.png",
        "128": "src\/icons\/icon-128.png"
    },
    "action": {
        "default_popup": "src\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.threads.net\/*"
            ],
            "js": [
                "src\/jquery.js",
                "src\/index.js"
            ],
            "css": [
                "src\/css\/index.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/index.js"
            ],
            "matches": [
                "*:\/\/*.threads.net\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.threads.net\/*"
    ]
}