feat(capture): add minimal browser extension

This commit is contained in:
cesnimda
2026-08-31 22:16:16 +02:00
parent b7029faaec
commit caf486dceb
5 changed files with 95 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
{
"manifest_version": 3,
"name": "Jobjakt Quick Capture",
"version": "1.0.0",
"description": "Send the current vacancy to Jobjakt's reviewed import flow.",
"permissions": ["activeTab", "contextMenus"],
"action": {
"default_title": "Save vacancy to Jobjakt"
},
"background": {
"service_worker": "background.mjs",
"type": "module"
}
}