insta-d
adds a download link to instagram pages
Apa itu insta-d?
insta-d adalah ekstensi Chrome yang dikembangkan oleh moldy530, dan fitur utamanya adalah "adds a download link to instagram pages".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi insta-d
Unduh file ekstensi insta-d dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | bbofjkmnliejmigcepfilhpigbpnghdg |
URL Resmi | https://chrome.google.com/webstore/detail/insta-d/bbofjkmnliejmigcepfilhpigbpnghdg |
Deskripsi | adds a download link to instagram pages |
Ukuran File | 25.93 KB |
Jumlah Instalasi | 120 |
Versi Saat Ini | 1.0.2 |
Terakhir Diperbarui | 2019-01-30 |
Tanggal Publikasi | 2019-01-30 |
Penilaian | 3.00/5 Total 2 Penilaian |
Pengembang | moldy530 |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.github.com/moldy530/insta-d |
Bahasa yang Didukung | 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" } } |