{ "manifest_version": 3, "name": "Manga Mass Downloader", "version": "1.0.0", "description": "Descarga mĂșltiples manga desde listados de e-hentai.org", "permissions": [ "activeTab", "storage", "downloads" ], "host_permissions": [ "https://e-hentai.org/*", "https://exhentai.org/*", "https://*.hath.network/*" ], "content_scripts": [ { "matches": [ "https://e-hentai.org/*", "https://exhentai.org/*" ], "js": ["content.js"], "run_at": "document_end" } ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_title": "Manga Mass Downloader", "default_icon": { "16": "icons/icon16.png", "32": "icons/icon32.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }, "web_accessible_resources": [ { "resources": ["*.js", "*.css"], "matches": [""] } ] }