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": "IDM Download Manager",
"description": "Click once to download all images on a webpage with the Image Download Manager Extension.",
"version": "2.1.0",
"permissions": [
"downloads",
"storage",
"scripting",
"activeTab",
"contextMenus"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "service-worker.js"
},
"action": {
"default_title": "IDM Download Manager",
"default_popup": "popup.html",
"default_icon": {
"128": "icon128.png"
}
},
"icons": {
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
]
}