Threads Video Downloader - Threadster

Download Threads videos and images using Threadster.

Was ist Threads Video Downloader - Threadster?

Threads Video Downloader - Threadster ist eine Chrome-Erweiterung, die von https://threadster.app entwickelt wurde, und ihr Hauptmerkmal ist "Download Threads videos and images using Threadster.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Threads Video Downloader - Threadster-Erweiterungs-CRX-Datei herunterladen

Laden Sie Threads Video Downloader - Threadster-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Threads Video Downloader - Threadster Threads Video Downloader - Threadster
ID dbapeonhbhkmajmjgpcmlikkjnhbbncm
Offizielle URL https://chromewebstore.google.com/detail/threads-video-downloader/dbapeonhbhkmajmjgpcmlikkjnhbbncm
Beschreibung Download Threads videos and images using Threadster.
Dateigröße 54.75 KB
Installationsanzahl 252
Aktuelle Version 1.1.1
Letztes Update 2023-08-26
Veröffentlichungsdatum 2023-07-17
Bewertung 5.00/5 Insgesamt 8 Bewertungen
Entwickler https://threadster.app
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://threadster.app
Hilfeseite URL https://threadster.app/contact-us
URL der Datenschutzrichtlinien-Seite https://aculix.com/privacy-policy
Unterstützte Sprachen 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\/*"
    ]
}