Twitter video downloader
Download twitter videos in best quality with one simple click
What is Twitter video downloader?
Twitter video downloader is a Chrome extension developed by mstfsnc, and its main feature is "Download twitter videos in best quality with one simple click".
Extension Screenshots
Download Twitter video downloader Extension CRX File
Download Twitter video downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Twitter video downloader |
ID | akmdionenlnfcipmdhbhcnkighafmdha |
Official URL | https://chromewebstore.google.com/detail/twitter-video-downloader/akmdionenlnfcipmdhbhcnkighafmdha |
Description | Download twitter videos in best quality with one simple click |
File Size | 21.08 KB |
Installation Count | 33,270 |
Current Version | 2.17.1 |
Last Updated | 2024-03-05 |
Publish Date | 2020-07-22 |
Rating | 4.55/5 Total 128 Ratings |
Developer | mstfsnc |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/mstfsnc/twitter-video-downloader |
Help Page URL | https://github.com/mstfsnc/twitter-video-downloader/issues |
Supported Languages | 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\/*" ] } ] } |