{ "manifest_version": 3, "name": "Gogh Theme Engine", "version": "1.0.0", "description": "Apply Gogh-style 16-color terminal palettes to any web page using perceptual OKLCH color remapping.", "permissions": [ "storage", "activeTab", "scripting" ], "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "" ], "js": [ "content.js" ], "run_at": "document_start", "all_frames": true } ], "options_page": "options/options.html", "action": { "default_title": "Gogh Theme Engine", "default_icon": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }, "icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }