Wix Image Downloader
This is a custom extension to download images from wix website.
Was ist Wix Image Downloader?
Wix Image Downloader ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This is a custom extension to download images from wix website.".
Erweiterungsscreenshots
Wix Image Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Wix Image Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This is a wix image downloaded. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | phknhncjbkehihhchhllabhlggjlenai |
| Offizielle URL | https://chromewebstore.google.com/detail/wix-image-downloader/phknhncjbkehihhchhllabhlggjlenai |
| Beschreibung | This is a custom extension to download images from wix website. |
| Dateigröße | 238 KB |
| Installationsanzahl | 838 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2019-01-19 |
| Veröffentlichungsdatum | 2019-01-19 |
| Bewertung | 2.33/5 Insgesamt 9 Bewertungen |
| Entwickler | Unknown |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
} | |