{ "manifest_version": 3, "name": "Outil d'écriture inclusive en français", "version": "1.1", "description": "Convertit automatiquement le texte pour utiliser le point médian inclusif (·) pendant la saisie.", "permissions": [ "storage", "activeTab", "scripting", "contextMenus" ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "images/icon16.png", "48": "images/icon48.png", "128": "images/icon128.png" } }, "icons": { "16": "images/icon16.png", "48": "images/icon48.png", "128": "images/icon128.png" }, "content_scripts": [ { "matches": [ "" ], "js": [ "content.js" ], "run_at": "document_idle" } ] }