Image Downloader
Download any image on your website page in one click!
什么是Image Downloader?
Image Downloader是由tiffanycheck.check开发的Chrome扩展程序,该扩展的主要功能是“Download any image on your website page in one click!”。
扩展截图
下载Image Downloader扩展crx文件
下载Image Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The extension gives the user the option to download images in different formats: PNG, JPG, SVG, WEBP 扩展基本信息
| 名称 | |
| ID | fnelomgkbbanddlflhgphgkijfeoehfb |
| 官方URL | https://chrome.google.com/webstore/detail/image-downloader/fnelomgkbbanddlflhgphgkijfeoehfb |
| 简介 | Download any image on your website page in one click! |
| 文件大小 | 19.54 KB |
| 安装次数 | 3,519 |
| 当前版本 | 1.1 |
| 更新时间 | 2022-12-05 |
| 上架时间 | 2022-11-28 |
| 开发者 | tiffanycheck.check |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://home.xcxologyda.xyz/ |
| 帮助页面URL | https://home.xcxologyda.xyz/contact.html |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"action": {
"default_icon": "logo.png",
"default_title": "Image Downloader",
"default_popup": "popup.html"
},
"description": "Download any image on your website page in one click!",
"icons": {
"128": "logo.png"
},
"manifest_version": 3,
"name": "Image Downloader",
"version": "1.1",
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"icons\/*.svg"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"host_permissions": [
"*:\/\/*\/*"
]
} | |