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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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 } |