- One version (1.4.0) across extension/manifest.json, automation/pyproject.toml, automation-js/package.json (+lockfile); README documents the bump-together policy - Delete .github/workflows/ci.yml (behind the Gitea copy; CI runs on Gitea Actions) - CURSOR_PROMPT.md: replace personal paths with <path-to-context-extractor> - Add ruff (E4,E7,E9,F,I, line-length 120) to automation/ dev extras, Makefile lint, and the Gitea CI Lint + tests job as a hard gate
31 lines
839 B
JSON
31 lines
839 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Context Extractor",
|
|
"version": "1.4.0",
|
|
"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
|
|
}
|
|
]
|
|
}
|