From 990ead9d5a1382c838c0cf835326a2e5416f7003 Mon Sep 17 00:00:00 2001 From: BartM82 <105561997+BartM82@users.noreply.github.com> Date: Fri, 27 Jun 2025 21:40:49 +0200 Subject: [PATCH] Create manifest.json --- plugin/plugin_chrome/manifest.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 plugin/plugin_chrome/manifest.json diff --git a/plugin/plugin_chrome/manifest.json b/plugin/plugin_chrome/manifest.json new file mode 100644 index 0000000..7abe826 --- /dev/null +++ b/plugin/plugin_chrome/manifest.json @@ -0,0 +1,14 @@ +{ + "manifest_version": 3, + "name": "Analyseur DIMA", + "version": "1.0", + "description": "Plugin d'analyse de manipulation cognitive selon la matrice DIMA", + "permissions": ["activeTab", "storage"], + "content_scripts": [{ + "matches": [""], + "js": ["content.js"] + }], + "action": { + "default_title": "Analyse DIMA" + } +}