Instagram Downloader
Download images/videos from instagram. No ads. Enjoy :)
Instagram Downloader क्या है?
Instagram Downloader cjkumaresh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download images/videos from instagram. No ads. Enjoy :)"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Instagram Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension will allow the users to download high resolution images and videos from instagram Features: 1. Download specific image in a profile (e.g: https://www.instagram.com/p/BHCPdEcgpVr/) or (e.g: https://www.instagram.com/p/BHCPdEcgpVr/?taken-by=samanthaprabhuofficial) 2. Download all images from a profile (e.g: https://www.instagram.com/shrutzhaasan/) 3. Download all images in home page (e.g: https://www.instagram.com) 4. Download specific video in a profile (e.g: https://www.instagram.com/p/BHW-JtggF9X/) or (e.g: https://www.instagram.com/p/BHW-JtggF9X/?taken-by=marloeshorst) 5. Download all videos from home page (e.g: https://www.instagram.com) Note: Downloading all videos for a profile is not implemented yet If you like this plugin. Please star this project on Github https://github.com/cjkumaresh/instagram-downloader-chrome
एक्सटेंशन की मूल जानकारी
नाम | Instagram Downloader |
ID | jhbapkbempcealhabaeicidlgbmhafmk |
आधिकारिक URL | https://chromewebstore.google.com/detail/instagram-downloader/jhbapkbempcealhabaeicidlgbmhafmk |
विवरण | Download images/videos from instagram. No ads. Enjoy :) |
फ़ाइल का आकार | 88.3 KB |
स्थापना संख्या | 1,314 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2023-12-20 |
प्रकाशन तिथि | 2023-12-20 |
रेटिंग | 3.92/5 कुल 36 रेटिंग्स |
डेवलपर | cjkumaresh |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/cjkumaresh/instagram-downloader-chrome |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Instagram Downloader", "description": "Download images\/videos from instagram. No ads. Enjoy :)", "version": "1.0.2", "short_name": "Instagram Download", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.instagram.com\/*" ], "js": [ "content.js" ], "all_frames": false } ], "page_action": { "default_icon": "icon.png", "default_popup": "popup.html" } } |