@apmantza/greedysearch-pi 1.6.1 → 1.6.3
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/CHANGELOG.md +5 -0
- package/package.json +8 -1
- package/cdp.mjs +0 -1004
- package/coding-task.mjs +0 -392
- package/extractors/bing-copilot.mjs +0 -167
- package/extractors/common.mjs +0 -237
- package/extractors/consent.mjs +0 -273
- package/extractors/gemini.mjs +0 -142
- package/extractors/google-ai.mjs +0 -156
- package/extractors/perplexity.mjs +0 -128
- package/extractors/selectors.mjs +0 -52
- package/launch.mjs +0 -288
- package/search.mjs +0 -1242
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v1.6.2 (2026-04-01)
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
- **Anti-bot detection evasion** — Gemini synthesis now performs gentle scroll every ~6 seconds while waiting for the copy button. This prevents the button from hanging due to anti-bot "human activity" checks.
|
|
7
|
+
|
|
3
8
|
## v1.6.1 (2026-03-31)
|
|
4
9
|
|
|
5
10
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apmantza/greedysearch-pi",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.3",
|
|
4
4
|
"description": "Pi extension: multi-engine AI search (Perplexity, Bing Copilot, Google AI) via browser automation — NO API KEYS needed. Extracts answers with sources, optional Gemini synthesis. Grounded AI answers from real browser interactions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -11,6 +11,13 @@
|
|
|
11
11
|
"url": "git+https://github.com/apmantza/GreedySearch-pi.git"
|
|
12
12
|
},
|
|
13
13
|
"license": "MIT",
|
|
14
|
+
"files": [
|
|
15
|
+
"index.ts",
|
|
16
|
+
"src/",
|
|
17
|
+
"skills/",
|
|
18
|
+
"CHANGELOG.md",
|
|
19
|
+
"README.md"
|
|
20
|
+
],
|
|
14
21
|
"pi": {
|
|
15
22
|
"extensions": [
|
|
16
23
|
"./index.ts"
|