Wix Image Downloader
This is a custom extension to download images from wix website.
什么是Wix Image Downloader?
Wix Image Downloader是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“This is a custom extension to download images from wix website.”。
扩展截图
下载Wix Image Downloader扩展crx文件
下载Wix Image Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is a wix image downloaded.
扩展基本信息
名称 | Wix Image Downloader |
ID | phknhncjbkehihhchhllabhlggjlenai |
官方URL | https://chromewebstore.google.com/detail/wix-image-downloader/phknhncjbkehihhchhllabhlggjlenai |
简介 | This is a custom extension to download images from wix website. |
文件大小 | 238 KB |
安装次数 | 838 |
当前版本 | 1.1 |
更新时间 | 2019-01-19 |
上架时间 | 2019-01-19 |
评分 | 2.33/5 共9次评分 |
开发者 | Unknown |
付费类型 | free |
支持的语言 | 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" } } |