Files
context-extractor/extension/manifest.json
T
ilia 81ba2461d1
CI / automation-js (vitest + real Chromium) (pull_request) Successful in 1m12s
CI / Lint + tests (pull_request) Successful in 10m25s
Release 1.5.0: controls inventory and data-URI truncation.
Also align __version__ with the unified product version.
2026-08-09 19:31:58 -04:00

46 lines
938 B
JSON

{
"manifest_version": 3,
"name": "Context Extractor",
"version": "1.5.0",
"description": "Extract clean, AI-ready context from any webpage \u2014 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
}
]
}