🐛 fixed unnecessary permission requests

This commit is contained in:
kawamataryo 2024-01-24 15:45:00 +09:00
parent 84a522c8c0
commit 2721ee9256
3 changed files with 19 additions and 2 deletions

View File

@ -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

View File

@ -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"

View File

@ -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));