pre work commit

This commit is contained in:
2026-02-20 22:05:03 +01:00
commit fde37912f0
9 changed files with 493 additions and 0 deletions

13
manifest.json Normal file
View File

@@ -0,0 +1,13 @@
{
"manifest_version": 3,
"name": "Cypress Click Recorder",
"version": "1.0",
"description": "Records clicks and sends element attributes to local server",
"permissions": ["activeTab", "scripting"],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
]
}