first commit

This commit is contained in:
Chris Punches
2025-12-30 18:01:34 -05:00
commit 7065a2db2e
16 changed files with 2167 additions and 0 deletions

43
manifest.json Normal file
View File

@@ -0,0 +1,43 @@
{
"manifest_version": 3,
"name": "CrowdProof Observe",
"version": "1.0.0",
"description": "Send observations to CrowdProof from any webpage",
"permissions": [
"storage",
"activeTab",
"cookies",
"contextMenus",
"sidePanel"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_icon": {
"48": "icons/icon-48.png"
},
"default_title": "Open CrowdProof Observe"
},
"side_panel": {
"default_path": "sidepanel/sidepanel.html"
},
"options_ui": {
"page": "options/options.html"
},
"background": {
"service_worker": "background/background.js"
},
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png",
"128": "icons/icon-128.png"
}
}