mirror of
https://github.com/snachodog/tok-to-insta-follower-bridge.git
synced 2025-04-03 10:41:25 -06:00
🐛 fixed unnecessary permission requests
This commit is contained in:
parent
84a522c8c0
commit
2721ee9256
4
.github/workflows/publish.yml
vendored
4
.github/workflows/publish.yml
vendored
@ -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
|
||||
|
||||
|
@ -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"
|
||||
|
11
scripts/remove_web_accessible_resources.js
Normal file
11
scripts/remove_web_accessible_resources.js
Normal 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));
|
Loading…
x
Reference in New Issue
Block a user