Twitter Gif & Video Downloader
Download videos and GIFs embedded in Tweets with ease.
Twitter Gif & Video Downloaderとは何ですか?
Twitter Gif & Video DownloaderはVitaminiserによって開発されたChromeの拡張機能で、その主な機能は「Download videos and GIFs embedded in Tweets with ease.」です。
拡張機能のスクリーンショット
Twitter Gif & Video Downloader拡張機能のCRXファイルをダウンロード
Twitter Gif & Video Downloader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Allows you to easily download any original Twitter media (like images, videos and GIFs) embedded in a tweet with 1 click, without manual selection, copying and pasting URLs and opening other sites. - Mouse over images displays a button in the bottom right corner. Clicking it downloads an original sized image. - All videos and gifs have a mouse over 'Download' button in the top left corner. Clicking it shows different video resolutions if available. - Since Twitter converts all incoming GIFs to MP4 you can either download it as an MP4 or upload it to 3rd party sites to convert - this is handled by EzGif.com, Giphy, ImgFlip and Gifs.com (more sites coming).
拡張機能の基本情報
名前 | Twitter Gif & Video Downloader |
ID | dnplonfnokbnmniimndpkglalockjmbn |
公式URL | https://chromewebstore.google.com/detail/twitter-gif-video-downloa/dnplonfnokbnmniimndpkglalockjmbn |
説明 | Download videos and GIFs embedded in Tweets with ease. |
ファイルサイズ | 58.97 KB |
インストール数 | 2,756 |
現在のバージョン | 1.38 |
最終更新日 | 2023-09-25 |
公開日 | 2021-03-20 |
評価 | 3.29/5 合計 14 レビュー |
開発者 | Vitaminiser |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://twitter.com/vitaminiser |
ヘルプページのURL | https://twitter.com/vitaminiser |
プライバシーポリシーページのURL | https://myproggies.github.io/Pinterest-Love-Pinterest-Screenshot-Saver |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Gif & Video Downloader", "short_name": "TwitterGif&VideoDownloader", "version": "1.38", "description": "Download videos and GIFs embedded in Tweets with ease.", "homepage_url": "https:\/\/twitter.com\/vitaminiser", "author": "@vitaminiser", "permissions": [ "scripting", "storage" ], "background": { "service_worker": "background.js" }, "icons": { "48": "48x48.png", "128": "128x128.png" }, "host_permissions": [ "*:\/\/twitter.com\/*", "*:\/\/mobile.twitter.com\/*", "https:\/\/*.ezgif.com\/*", "https:\/\/video.twimg.com\/*", "https:\/\/giphy.com\/upload", "https:\/\/imgflip.com\/gif-maker*", "https:\/\/gifs.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*", "*:\/\/mobile.twitter.com\/*" ], "run_at": "document_start", "js": [ "debug.js", "libs\/$elem.js", "content.js", "tweet.js", "gifer.js", "libs\/miniquery.js", "ui.js", "settings.js" ] } ], "web_accessible_resources": [ { "resources": [ "content.css", "window.html", "links.html" ], "matches": [ "*:\/\/twitter.com\/*", "*:\/\/mobile.twitter.com\/*" ] } ], "manifest_version": 3 } |