From 0857a73d1addd28d20cb4d7679f4198e41b18d92 Mon Sep 17 00:00:00 2001 From: qcrao Date: Tue, 9 Jul 2024 08:34:46 +0800 Subject: [PATCH] add permissions --- manifest.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/manifest.json b/manifest.json index eedca8a..2b18411 100644 --- a/manifest.json +++ b/manifest.json @@ -13,17 +13,17 @@ }, "permissions": [ "scripting", - "activeTab" + "activeTab", + "https://bulk-delete-chatgpt-worker.qcrao.com/*" ], "content_scripts": [ { - "matches": [ - "*://chat.openai.com/*" - ], + "matches": ["*://chat.openai.com/*"], "js": [ "globals.js", "addCheckboxes.js", - "bulkDeleteConversations.js" + "bulkDeleteConversations.js", + "deleteConversations.js" ], "run_at": "document_idle" }