IG Downloader
Downloads videos and images from ig
IG Downloader क्या है?
IG Downloader matthewlam.js द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Downloads videos and images from ig"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में IG Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
After installing the extension, navigate to IG's website in a new tab and log in. From there you have the following options: Download regular IG posts images/videos: -click on a link to a post anywhere IG to open it. -a confirm dialog should pop up asking if you want to download the files. Download IG stories: -click on a story to open it in the story viewer. -click start download button on top left of page and stories should start downloading as they are played. -click stop download button on top left of page to stop downloading.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | gelbcoobaindiodaajafdoibjohgnnda |
आधिकारिक URL | https://chrome.google.com/webstore/detail/ig-downloader/gelbcoobaindiodaajafdoibjohgnnda |
विवरण | Downloads videos and images from ig |
फ़ाइल का आकार | 10.96 KB |
स्थापना संख्या | 2,000 |
वर्तमान संस्करण | 1.1.3 |
अंतिम अपडेट | 2019-07-20 |
प्रकाशन तिथि | 2019-07-20 |
रेटिंग | 3.00/5 कुल 6 रेटिंग्स |
डेवलपर | matthewlam.js |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://www.github.com/matthewlamdotjs |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "IG Downloader", "description": "Downloads videos and images from ig", "version": "1.1.3", "author": "Matthew Lam", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.instagram.com\/*" ], "js": [ "posts.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/*.instagram.com\/*" ], "js": [ "stories.js" ], "run_at": "document_end" } ] } |