insta-d
adds a download link to instagram pages
insta-dคืออะไร?
insta-d เป็นส่วนขยายของ Chrome ที่พัฒนาโดย moldy530 และคุณลักษณะหลักของมันคือ "adds a download link to instagram pages"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย insta-d
ดาวน์โหลดไฟล์ส่วนขยาย insta-d ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Simple extension that allows you to download instagram images as you browse them. Just click on an image to open up its modal on someone's feed and click the download icon next to the share icon and it will download the highest quality available.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | bbofjkmnliejmigcepfilhpigbpnghdg |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/insta-d/bbofjkmnliejmigcepfilhpigbpnghdg |
คำอธิบาย | adds a download link to instagram pages |
ขนาดไฟล์ | 25.93 KB |
จำนวนการติดตั้ง | 120 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2019-01-30 |
วันที่เผยแพร่ | 2019-01-30 |
คะแนน | 3.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | moldy530 |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.github.com/moldy530/insta-d |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "insta-d", "description": "adds a download link to instagram pages", "version": "1.0.2", "permissions": [ "activeTab" ], "web_accessible_resources": [ "images\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.instagram.com\/*" ], "js": [ "script.js" ] } ], "page_action": { "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "64": "images\/icon_64.png" }, "default_title": "insta-d" }, "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "64": "images\/icon_64.png", "128": "images\/icon_128.png" } } |