Files
context-extractor/extension/manifest.json
T
ilia c91cd221d1
CI / Lint + tests (push) Has been cancelled
Initial Context Extractor: extension + Playwright/Camoufox package
Ship a shared markdown/prompt core used by a Brave/Chrome MV3 extension and a Python automation API, with pytest coverage, CI, and packaging smoke.
2026-07-15 14:52:22 -04:00

31 lines
839 B
JSON

{
"manifest_version": 3,
"name": "Context Extractor",
"version": "1.3.2",
"description": "Extract clean, AI-ready context from any webpage — page content, console logs, network requests, and JS errors. Works unpacked in Chrome and Brave.",
"permissions": ["activeTab", "scripting", "storage"],
"host_permissions": ["<all_urls>"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "Context Extractor"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["core/dom.js", "content.js"],
"run_at": "document_start",
"all_frames": false
},
{
"matches": ["<all_urls>"],
"js": ["page-patcher.js"],
"world": "MAIN",
"run_at": "document_start",
"all_frames": false
}
]
}