mirror of
https://github.com/snachodog/tok-to-insta-follower-bridge.git
synced 2025-04-04 03:01:25 -06:00
12 lines
309 B
JavaScript
12 lines
309 B
JavaScript
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));
|