Smart patterns now catch all concatenated combinations of first+last names with common separators: | Pattern | Example real | Example replaced | |---------|-------------|-----------------| | FirstLast | JohnSmith | AdemoDem | | firstlast | johnsmith | ademodemo | | first.last | john.smith | ademo.demo | | first_last | john_smith | ademo_demo | | first-last | john-smith | ademo-demo | | LastFirst | SmithJohn | DemoAdemo | | last.first | smith.john | demo.ademo | Case is preserved: all-lowercase input → lowercase output, ALL-UPPERCASE → uppercase, mixed case → as configured. Also bumped all versions to 2.0.5. https://claude.ai/code/session_01SWSwDfMVij53bCTNSCLMwn
19 lines
572 B
JSON
19 lines
572 B
JSON
{
|
|
"name": "silent-send",
|
|
"version": "2.0.5",
|
|
"private": true,
|
|
"license": "BSL-1.1",
|
|
"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"
|
|
}
|
|
}
|