Release 1.5.0: controls inventory and data-URI truncation.
CI / automation-js (vitest + real Chromium) (pull_request) Successful in 1m12s
CI / Lint + tests (pull_request) Successful in 10m25s

Also align __version__ with the unified product version.
This commit is contained in:
2026-08-09 19:31:58 -04:00
parent 16731a0c92
commit 81ba2461d1
5 changed files with 40 additions and 12 deletions
+23 -8
View File
@@ -1,10 +1,16 @@
{
"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>"],
"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"
},
@@ -14,14 +20,23 @@
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["core/dom.js", "content.js"],
"matches": [
"<all_urls>"
],
"js": [
"core/dom.js",
"content.js"
],
"run_at": "document_start",
"all_frames": false
},
{
"matches": ["<all_urls>"],
"js": ["page-patcher.js"],
"matches": [
"<all_urls>"
],
"js": [
"page-patcher.js"
],
"world": "MAIN",
"run_at": "document_start",
"all_frames": false