first commit

This commit is contained in:
Chris Punches
2025-12-30 04:34:38 -05:00
commit 637b67d971
11 changed files with 2170 additions and 0 deletions

51
manifest.json Normal file
View File

@@ -0,0 +1,51 @@
{
"manifest_version": 2,
"name": "CrowdProof Observe",
"version": "1.0.0",
"description": "Send observations to CrowdProof from any webpage",
"permissions": [
"storage",
"activeTab",
"cookies",
"theme",
"contextMenus",
"menus",
"<all_urls>"
],
"browser_specific_settings": {
"gecko": {
"id": "crowdproof-observe@proofpoint.local"
}
},
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"sidebar_action": {
"default_icon": {
"48": "icons/icon-48.png"
},
"default_title": "CrowdProof Observe",
"default_panel": "sidebar/sidebar.html"
},
"browser_action": {
"default_icon": {
"48": "icons/icon-48.png"
},
"default_title": "Toggle CrowdProof Observe"
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"background": {
"scripts": ["background/background.js"]
}
}