From 279b5d729a0e2e594e975e7e1f5ac1df1e3ea29f Mon Sep 17 00:00:00 2001 From: spideyclick Date: Wed, 2 Apr 2025 09:09:54 -0500 Subject: [PATCH] Add bitbucket.org to permission/content matches --- extension/public/manifest.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/extension/public/manifest.json b/extension/public/manifest.json index d5d50d8..02e3131 100644 --- a/extension/public/manifest.json +++ b/extension/public/manifest.json @@ -10,12 +10,14 @@ "scripting" ], "host_permissions": [ - "https://github.com/*" + "https://github.com/*", + "https://bitbucket.org/*" ], "content_scripts": [ { "matches": [ - "https://github.com/*" + "https://github.com/*", + "https://bitbucket.org/*" ], "js": [ "js/diagramScript.js" @@ -38,4 +40,4 @@ ] } ] -} \ No newline at end of file +}