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 |
官方網址 | 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 |
電子郵箱 | [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 } |