From 8e8b58595a2f1bad40bd5783ed8bd5bae8ef8f1b Mon Sep 17 00:00:00 2001 From: Ads Dawson <104169244+GangGreenTemperTatum@users.noreply.github.com> Date: Fri, 27 Dec 2024 07:52:13 -0500 Subject: [PATCH 1/2] fix: rm storage purple potassium --- manifest.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 93c8022..d984bad 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "DOMspy", - "version": "1.0.0", + "version": "1.0.1", "description": "Web security tool to help developers and security professionals understand the DOM and how it can be manipulated.", "icons": { "48": "images/DOMspy48.png", @@ -17,7 +17,6 @@ "permissions": [ "activeTab", "scripting", - "storage", "downloads" ], "content_scripts": [{ From 618555d1b8ffb274d7736d9255b74a29d17deba8 Mon Sep 17 00:00:00 2001 From: Ads Dawson <104169244+GangGreenTemperTatum@users.noreply.github.com> Date: Fri, 27 Dec 2024 07:53:43 -0500 Subject: [PATCH 2/2] fix: update workflow perms manifest --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1016c0b..2e29809 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -67,7 +67,7 @@ jobs: - name: Validate manifest permissions run: | PERMISSIONS=$(node -p "JSON.stringify(require('./manifest.json').permissions)") - EXPECTED_PERMISSIONS='["activeTab","scripting","storage","downloads"]' + EXPECTED_PERMISSIONS='["activeTab","scripting","downloads"]' if [ "$PERMISSIONS" = "$EXPECTED_PERMISSIONS" ]; then echo "Manifest permissions are valid" else