From 5205719beefbb2a36a93a5a5a08fe66b3163b966 Mon Sep 17 00:00:00 2001 From: Ads Dawson <104169244+GangGreenTemperTatum@users.noreply.github.com> Date: Fri, 27 Dec 2024 07:56:55 -0500 Subject: [PATCH] fix: rm storage purple potassium (#12) * fix: rm storage purple potassium * fix: update workflow perms manifest --- .github/workflows/build.yml | 2 +- manifest.json | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) 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 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": [{