Addon for MyAnimeList showing anime/manga genre tags, and completed anime/manga that are on other user's planed to watch/read list in shared section.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "MAL Completed on Shared",
"version": "0.4.24.0",
"browser_action": {
"default_icon": "icon16.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*://*.myanimelist.net/shared.php*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"identity",
"cookies",
"storage",
"clipboardWrite",
"*://*.myanimelist.net/",
"*://*.dirtyfix2.vercel.app/"
],
"background": {
"scripts": [
"secrets.js",
"background.js"
]
},
"options_ui": {
"page": "options.html",
"browser_style": true,
"open_in_tab": true
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"web_accessible_resources": [
"walk.gif",
"firstpopup.html"
],
"browser_specific_settings": {
"gecko": {
"id": "{696c378a-5246-46c9-9748-89d2b7664938}"
}
}
}