docs: add MIT license, explain reveal mode in README
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
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2025 Silent Send Contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
@@ -86,6 +86,19 @@ You can create multiple profiles (Personal, Work, Spouse) using the dropdown at
|
||||
| **Blue** | Reveal mode on — showing your real data in AI responses |
|
||||
| **Red** | Manually disabled |
|
||||
|
||||
### Reveal mode
|
||||
|
||||
When reveal mode is on (eye icon or `Alt+Shift+R`), the AI's responses are displayed with your **real data** instead of the fake substitutes. This is purely a local display change — **the AI never received your real data**. It only ever saw the fake names, emails, paths, etc.
|
||||
|
||||
This exists so you can easily copy paths, commands, and code from the AI's response and paste them directly into your terminal or editor without manually translating fake values back to real ones.
|
||||
|
||||
For example:
|
||||
- AI responds: `Edit the file at /home/ademo/project/config.yaml`
|
||||
- With reveal mode ON, you see: `Edit the file at /home/jsmith/project/config.yaml`
|
||||
- Copy that path, paste into terminal — it works
|
||||
|
||||
Toggle it off and the display reverts to the fake data the AI actually received.
|
||||
|
||||
### Keyboard shortcuts
|
||||
|
||||
| Shortcut | Action |
|
||||
@@ -256,3 +269,7 @@ src/
|
||||
- No external servers, no telemetry, no analytics
|
||||
- The extension only activates on supported AI sites (and any custom domains you add)
|
||||
- Your real identity data never leaves your machine
|
||||
|
||||
## License
|
||||
|
||||
[MIT](LICENSE) — use it for anything, commercial or personal, modify it, redistribute it, relicense it. Just keep the copyright notice in copies of the code.
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
"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",
|
||||
|
||||
Reference in New Issue
Block a user