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.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου 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 |
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\/*" ] } |