| { |
| "manifest_version": 3, |
| "name": "TextPhantom - OCR Overlay", |
| "version": "2026.03.15", |
| "description": "🧠 Right-click any image → translate images", |
| "permissions": [ |
| "contextMenus", |
| "storage", |
| "activeTab" |
| ], |
| "host_permissions": [ |
| "<all_urls>" |
| ], |
| "background": { |
| "service_worker": "background-service.js", |
| "type": "module" |
| }, |
| "action": { |
| "default_popup": "popup/popup.html", |
| "default_icon": { |
| "48": "icons/48.png" |
| } |
| }, |
| "content_scripts": [ |
| { |
| "matches": [ |
| "<all_urls>" |
| ], |
| "js": [ |
| "content-service.js" |
| ], |
| "run_at": "document_start", |
| "all_frames": true |
| } |
| ], |
| "icons": { |
| "48": "icons/48.png", |
| "128": "icons/128.png" |
| } |
| } |
| |