@pilio/gemini-watermark-remover 1.0.18 → 1.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -1
- package/src/core/candidateSelector.js +758 -96
- package/src/core/geminiSizeCatalog.js +129 -15
- package/src/core/selectionDebug.js +46 -0
- package/src/core/watermarkProcessor.js +132 -31
- package/src/core/watermarkScoring.js +140 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pilio/gemini-watermark-remover",
|
|
3
3
|
"description": "Automatically removes watermarks from Gemini AI generated images",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.19",
|
|
5
5
|
"author": "GargantuaX",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"files": [
|
|
@@ -78,6 +78,8 @@
|
|
|
78
78
|
"probe:real-page:compare": "node scripts/real-page-pixel-compare.js",
|
|
79
79
|
"benchmark:samples": "node scripts/sample-benchmark.js",
|
|
80
80
|
"benchmark:userscript": "node scripts/userscript-benchmark.js",
|
|
81
|
+
"scan:sample-watermarks": "node scripts/scan-sample-watermarks.js",
|
|
82
|
+
"render:skipped-crops": "node scripts/render-skipped-candidate-crops.js",
|
|
81
83
|
"package:extension": "node scripts/package-extension-release.js",
|
|
82
84
|
"cli:smoke": "node bin/gwr.mjs --help",
|
|
83
85
|
"serve": "pnpm dlx serve dist",
|