first version of browser extension hireflow

This commit is contained in:
2026-05-04 14:37:21 +02:00
parent 613f0bda5f
commit e182f87cac
10 changed files with 724 additions and 0 deletions
@@ -0,0 +1,30 @@
{
"manifest_version": 3,
"name": "Hireflow Interaction Tracker",
"version": "1.0.0",
"description": "Record page interactions (clicks, typing) and export as JSON with XPath selectors.",
"permissions": ["activeTab", "scripting", "storage"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "Hireflow Interaction Tracker",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"96": "icons/icon96.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"96": "icons/icon96.png"
},
"browser_specific_settings": {
"gecko": {
"id": "hireflow-interaction-tracker@hireflow.local",
"strict_min_version": "109.0"
}
}
}