Twitter Gif & Video Downloader
Download videos and GIFs embedded in Tweets with ease.
Twitter Gif & Video Downloader क्या है?
Twitter Gif & Video Downloader Vitaminiser द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download videos and GIFs embedded in Tweets with ease."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitter Gif & Video Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 } |