- Created icon files in 4 sizes: 16x16, 32x32, 48x48, 128x128 - Added icons directory with gradient purple design - Updated manifest.json to include default_icon configuration - Icons will now display properly in Chrome toolbar Required for Chrome Web Store compliance
46 lines
985 B
JSON
46 lines
985 B
JSON
{
|
|
"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": ["<all_urls>"]
|
|
}
|
|
]
|
|
}
|