Margatsni
Utility extension for Instagram.
Margatsniคืออะไร?
Margatsni เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hai Nguyen และคุณลักษณะหลักของมันคือ "Utility extension for Instagram."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Margatsni
ดาวน์โหลดไฟล์ส่วนขยาย Margatsni ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
* UPDATE Feb 20, 2018: Support enabling/disabling and pausing/playing stories. * UPDATE Jul 09, 2017: Support for multiple-photo items. * UPDATE Jun 11, 2017: Hover over profile pictures to download. Margatsni allows users to download photos and videos from Instagram. Currently supported features: - Download high quality photos if possible (Instagram has allowed uploading of HD images since late 2015). - Download videos. - Download buttons are available in both your feed (next to the heart button) and Instagram users' profiles (on moving mouse over each item). - Disable/enable stories. - Pause stories. * DISCLAIMER: This extension is provided as a convenient tool and is by no means related to Instagram, LLC. I am not responsible for any illegal distribution or reposting of the content downloaded using this tool.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | mijhjcajhhoodjdjpjooppacmodnignn |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/margatsni/mijhjcajhhoodjdjpjooppacmodnignn |
คำอธิบาย | Utility extension for Instagram. |
ขนาดไฟล์ | 176 KB |
จำนวนการติดตั้ง | 6,114 |
เวอร์ชันปัจจุบัน | 3.31 |
อัปเดตครั้งล่าสุด | 2018-06-02 |
วันที่เผยแพร่ | 2018-06-02 |
คะแนน | 3.94/5 รวมทั้งหมด 205 คะแนน |
ผู้พัฒนา | Hai Nguyen |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Margatsni", "description": "Utility extension for Instagram.", "version": "3.31", "background": { "scripts": [ "background.js" ], "persistent": false, "run_at": "document_end" }, "page_action": { "default_icon": { "19": "icon19.png", "38": "icon38.png" } }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "https:\/\/www.instagram.com\/*", "declarativeContent" ], "content_scripts": [ { "matches": [ "https:\/\/www.instagram.com\/*" ], "js": [ "jquery-2.2.4.min.js", "jszip.min.js", "FileSaver.min.js", "content.js", "storiesUtils.js" ], "run_at": "document_end" } ], "short_name": "Margatsni", "web_accessible_resources": [ "download_black.png", "download_white.png", "pause.png", "play.png" ] } |