Add LICENSE file (MIT). Explain in README that reveal mode is a local display change only — the AI never received the real data. Reveal exists so users can copy paths/commands from AI responses and paste them directly into their terminal without manually translating fake values back to real ones. https://claude.ai/code/session_01Dvgwe7XMoSxnWXkih8p1Cw
19 lines
568 B
JSON
19 lines
568 B
JSON
{
|
|
"name": "silent-send",
|
|
"version": "0.3.0",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"description": "Browser extension that substitutes personal data before sending to AI services",
|
|
"scripts": {
|
|
"build:chrome": "./build.sh chrome",
|
|
"build:firefox": "./build.sh firefox",
|
|
"build": "./build.sh both",
|
|
"lint:firefox": "npx web-ext lint --source-dir dist/firefox",
|
|
"sign:firefox": "./sign-firefox.sh",
|
|
"run:firefox": "./build.sh firefox && npx web-ext run --source-dir dist/firefox"
|
|
},
|
|
"devDependencies": {
|
|
"web-ext": "^8.4.0"
|
|
}
|
|
}
|