IG Downloader
Downloads videos and images from ig
ما هو IG Downloader؟
IG Downloader هو إضافة Chrome تم تطويرها بواسطة matthewlam.js، والميزة الرئيسية لها هي "Downloads videos and images from ig".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة IG Downloader
قم بتنزيل ملفات الامتداد IG Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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" } ] } |