Instagram Downloader
Download media from Instagram
ما هو Instagram Downloader؟
Instagram Downloader هو إضافة Chrome تم تطويرها بواسطة samagragupta، والميزة الرئيسية لها هي "Download media from Instagram".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Instagram Downloader
قم بتنزيل ملفات الامتداد Instagram Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Download any image or Video from Instagram. Just one click to go ahead !!!
معلومات أساسية عن التمديد
الاسم | |
ID | ciodnolkjfhjhpcdaehfoilnbinkhbca |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/instagram-downloader/ciodnolkjfhjhpcdaehfoilnbinkhbca |
الوصف | Download media from Instagram |
حجم الملف | 31.01 KB |
عدد التثبيتات | 9,000 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2020-10-06 |
تاريخ النشر | 2020-10-06 |
تقييم | 2.60/5 مجموع تقييمات 5 |
المطور | samagragupta |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "default_locale": "en", "name": "Instagram Downloader", "description": "Download media from Instagram", "version": "1.0.0", "browser_action": { "default_icon": { "19": "icons\/insta.jpg", "38": "icons\/insta.jpg" } }, "icons": { "16": "icons\/insta.jpg", "48": "icons\/insta.jpg", "128": "icons\/insta.jpg" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "script.js" ], "css": [ "style.css" ], "matches": [ "*:\/\/*.instagram.com\/*" ] } ], "permissions": [ "tabs", "downloads", "storage", "http:\/\/www.instagram.com\/*", "https:\/\/www.instagram.com\/*" ], "options_ui": { "page": "options.html", "open_in_tab": true } } |