Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Etsy Image Downloader - Save Etsy image video",
"description": "Scrape and download Etsy product images with one click. Easily save Etsy product videos and images in bulk!",
"version": "1.0.1",
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"action": {
"default_title": "Etsy Image Downloader - Save Etsy image video",
"default_popup": "popup.html"
},
"permissions": [
"storage",
"downloads"
],
"host_permissions": [
"*:\/\/*.echobot.dev\/*",
"*:\/\/*.etsy.com\/*"
],
"web_accessible_resources": [
{
"resources": [
"dashboard.html"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"icons\/128.png"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"content-scripts\/ui.css"
],
"matches": [
"*:\/\/*.etsy.com\/*"
]
}
],
"background": {
"type": "module",
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/etsydownloader.echobot.dev\/auth_redirect*"
],
"all_frames": false,
"run_at": "document_end",
"js": [
"content-scripts\/auth.js"
]
},
{
"matches": [
"https:\/\/echobot.dev\/etsydownloader\/checkout*"
],
"all_frames": false,
"run_at": "document_end",
"js": [
"content-scripts\/payCallback.js"
]
},
{
"matches": [
"*:\/\/*.etsy.com\/*"
],
"all_frames": false,
"run_at": "document_end",
"js": [
"content-scripts\/ui.js"
]
}
]
}