From 2721ee92568bf0b0d19b7433f94649c03c94468c Mon Sep 17 00:00:00 2001 From: kawamataryo Date: Wed, 24 Jan 2024 15:45:00 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fixed=20unnecessary=20permission?= =?UTF-8?q?=20requests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/publish.yml | 4 ++++ package.json | 6 ++++-- scripts/remove_web_accessible_resources.js | 11 +++++++++++ 3 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 scripts/remove_web_accessible_resources.js diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 59f6b5a..514de4d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -66,6 +66,10 @@ jobs: - name: Build the extension run: npm run build && npm run build:firefox + # patch for plasmo bug + - name: remove unused permissions + run: npm run remove-permissions + - name: Package the extension into a zip artifact run: npm run package && npm run package:firefox diff --git a/package.json b/package.json index fac3076..028b4c8 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,8 @@ "run-client": "ts-node --project tsconfig.script.json scripts/client.ts", "check": "npx @biomejs/biome check --apply-unsafe ./src", "storybook": "storybook dev -p 6006", - "build-storybook": "storybook build" + "build-storybook": "storybook build", + "remove-permissions": "node scripts/remove_web_accessible_resources.js" }, "dependencies": { "@atproto/api": "^0.7.4", @@ -67,7 +68,8 @@ "mac": "Alt+B" } } - } + }, + "web_accessible_resources": [] }, "volta": { "node": "16.20.0" diff --git a/scripts/remove_web_accessible_resources.js b/scripts/remove_web_accessible_resources.js new file mode 100644 index 0000000..f442158 --- /dev/null +++ b/scripts/remove_web_accessible_resources.js @@ -0,0 +1,11 @@ +const fs = require('fs'); + +const manifestPath = './build/chrome-mv3-prod/manifest.json'; + +const manifestData = fs.readFileSync(manifestPath); + +const manifestObj = JSON.parse(manifestData); + +delete manifestObj['web_accessible_resources']; + +fs.writeFileSync(manifestPath, JSON.stringify(manifestObj, null, 2));