feat: initialise Lildra browser extension

This commit is contained in:
git
2026-07-27 18:33:38 +10:00
commit e6e5336209
9 changed files with 240 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
{
"manifest_version": 3,
"name": "Lildra",
"version": "0.2.3",
"description": "A minimal Canvas and QLearn page view with hidden navigation, centred content, a compact fixed page title and version label.",
"permissions": [
"activeTab",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Toggle Lildra"
},
"commands": {
"toggle-lildra": {
"suggested_key": {
"default": "Alt+L",
"mac": "Alt+L"
},
"description": "Toggle Lildra"
}
},
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}