feat: add firefox extension

This commit is contained in:
2026-05-19 02:46:51 +02:00
parent 237b5f3004
commit bcee65cbad
7 changed files with 510 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{
"manifest_version": 3,
"name": "MyAnimeList",
"version": "0.1.0",
"description": "Right-click selected anime titles and add them to your watchlist.",
"permissions": ["contextMenus", "storage"],
"host_permissions": ["<all_urls>"],
"background": {
"scripts": ["background.js"]
},
"action": {
"default_title": "MAL Watchlist",
"default_popup": "popup.html"
},
"icons": {
"48": "icon.svg"
}
}