Instagram Downloader
Download images/videos from instagram. No ads. Enjoy :)
Instagram Downloaderคืออะไร?
Instagram Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย cjkumaresh และคุณลักษณะหลักของมันคือ "Download images/videos from instagram. No ads. Enjoy :)"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Instagram Downloader
ดาวน์โหลดไฟล์ส่วนขยาย Instagram Downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } |