Twitter video downloader
Download twitter videos in best quality with one simple click
Was ist Twitter video downloader?
Twitter video downloader ist eine Chrome-Erweiterung, die von mstfsnc entwickelt wurde, und ihr Hauptmerkmal ist "Download twitter videos in best quality with one simple click".
Erweiterungsscreenshots
Twitter video downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Twitter video downloader-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
1 - After installation, you will see a download icon under every tweet, which contains a video. 2 - Simply press download icon. 3 - Video will be downloaded when loading complete.
Grundlegende Informationen zur Erweiterung
Name | Twitter video downloader |
ID | akmdionenlnfcipmdhbhcnkighafmdha |
Offizielle URL | https://chromewebstore.google.com/detail/twitter-video-downloader/akmdionenlnfcipmdhbhcnkighafmdha |
Beschreibung | Download twitter videos in best quality with one simple click |
Dateigröße | 21.08 KB |
Installationsanzahl | 33,270 |
Aktuelle Version | 2.17.1 |
Letztes Update | 2024-03-05 |
Veröffentlichungsdatum | 2020-07-22 |
Bewertung | 4.55/5 Insgesamt 128 Bewertungen |
Entwickler | mstfsnc |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/mstfsnc/twitter-video-downloader |
Hilfeseite URL | https://github.com/mstfsnc/twitter-video-downloader/issues |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "2.17.1", "description": "Download twitter videos in best quality with one simple click", "name": "Twitter video downloader", "manifest_version": 3, "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "*:\/\/*.twitter.com\/*", "*:\/\/*.x.com\/*" ], "js": [ "inject.js" ], "css": [ "content.css" ] } ], "web_accessible_resources": [ { "resources": [ "content.js" ], "matches": [ "*:\/\/*.twitter.com\/*", "*:\/\/*.x.com\/*" ] } ] } |