Wix Image Downloader
This is a custom extension to download images from wix website.
Apa itu Wix Image Downloader?
Wix Image Downloader adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "This is a custom extension to download images from wix website.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Wix Image Downloader
Unduh file ekstensi Wix Image Downloader 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
This is a wix image downloaded.
Informasi Dasar Ekstensi
Nama | Wix Image Downloader |
ID | phknhncjbkehihhchhllabhlggjlenai |
URL Resmi | https://chromewebstore.google.com/detail/wix-image-downloader/phknhncjbkehihhchhllabhlggjlenai |
Deskripsi | This is a custom extension to download images from wix website. |
Ukuran File | 238 KB |
Jumlah Instalasi | 838 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2019-01-19 |
Tanggal Publikasi | 2019-01-19 |
Penilaian | 2.33/5 Total 9 Penilaian |
Pengembang | Unknown |
Tipe Pembayaran | free |
Bahasa yang Didukung | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Wix Image Downloader", "version": "1.1", "offline_enabled": true, "description": "This is a custom extension to download images from wix website.", "icons": { "16": "icon.png", "128": "icon_128.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.wixsite.com\/*" ], "js": [ "content.js" ] } ], "page_action": { "default_title": "Wix Image Downloader", "default_popup": "popup.html" } } |