Wix Image Downloader
This is a custom extension to download images from wix website.
Cos'è Wix Image Downloader?
Wix Image Downloader è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This is a custom extension to download images from wix website.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Wix Image Downloader
Scarica i file di estensione Wix Image Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This is a wix image downloaded.
Informazioni di Base sull'Estensione
Nome | Wix Image Downloader |
ID | phknhncjbkehihhchhllabhlggjlenai |
URL Ufficiale | https://chromewebstore.google.com/detail/wix-image-downloader/phknhncjbkehihhchhllabhlggjlenai |
Descrizione | This is a custom extension to download images from wix website. |
Dimensione del File | 238 KB |
Conteggio Installazioni | 838 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2019-01-19 |
Data di Pubblicazione | 2019-01-19 |
Valutazione | 2.33/5 Totale 9 Valutazioni |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |