Image Downloader
Download any image on your website page in one click!
What is Image Downloader?
Image Downloader is a Chrome extension developed by tiffanycheck.check, and its main feature is "Download any image on your website page in one click!".
Extension Screenshots
Download Image Downloader Extension CRX File
Download Image Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
The extension gives the user the option to download images in different formats: PNG, JPG, SVG, WEBP Extension Basic Information
| Name | |
| ID | fnelomgkbbanddlflhgphgkijfeoehfb |
| Official URL | https://chrome.google.com/webstore/detail/image-downloader/fnelomgkbbanddlflhgphgkijfeoehfb |
| Description | Download any image on your website page in one click! |
| File Size | 19.54 KB |
| Installation Count | 3,519 |
| Current Version | 1.1 |
| Last Updated | 2022-12-05 |
| Publish Date | 2022-11-28 |
| Developer | tiffanycheck.check |
| [email protected] | |
| Payment Type | free |
| Extension Website | https://home.xcxologyda.xyz/ |
| Help Page URL | https://home.xcxologyda.xyz/contact.html |
| Supported Languages | 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": [
"*:\/\/*\/*"
]
} | |