Threads Video Downloader - Threadster

Download Threads videos and images using Threadster.

Vad är Threads Video Downloader - Threadster?

Threads Video Downloader - Threadster är en Chrome-tillägg utvecklad av https://threadster.app, och dess huvudfunktion är "Download Threads videos and images using Threadster.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Threads Video Downloader - Threadster-förlängningens CRX-fil

Ladda ner Threads Video Downloader - Threadster-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Threads Video Downloader - Threadster Threads Video Downloader - Threadster
ID dbapeonhbhkmajmjgpcmlikkjnhbbncm
Officiell webbadress https://chromewebstore.google.com/detail/threads-video-downloader/dbapeonhbhkmajmjgpcmlikkjnhbbncm
Beskrivning Download Threads videos and images using Threadster.
Filstorlek 54.75 KB
Antal Installationer 252
Aktuell Version 1.1.1
Senast Uppdaterad 2023-08-26
Publiceringsdatum 2023-07-17
Betyg 5.00/5 Totalt 8 Betyg
Utvecklare https://threadster.app
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://threadster.app
Hjälpsida URL https://threadster.app/contact-us
URL till Sekretesspolicy Sidan https://aculix.com/privacy-policy
Stödda Språk 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\/*"
    ]
}