initial commit

This commit is contained in:
Kouya Heika
2026-04-22 03:30:16 -05:00
commit 313035d85a
14 changed files with 1391 additions and 0 deletions

33
manifest.json Normal file
View File

@@ -0,0 +1,33 @@
{
"manifest_version": 2,
"name": "WaXMPlayer",
"version": "1.0",
"description": "View and play module files in a tracker",
"author": "Kouya Heika",
"browser_action": {
"default_icon": {
"48": "icon-48.png"
},
"default_title": "Open WaXMPlayer"
},
"background": {
"scripts": [ "background.js" ]
},
"permissions": [
"tabs",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"web_accessible_resources": [
"player.html"
],
"browser_specific_settings": {
"gecko": {
"id": "waxmplayer@kouya.canithesis.org",
"data_collection_permissions": {
"required": [ "none" ]
}
}
}
}