h17-webpilot 0.1.0
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/LICENSE +191 -0
- package/README.md +177 -0
- package/SKILLS.md +299 -0
- package/bin/cli.js +857 -0
- package/client/cursor.js +32 -0
- package/client/element.js +119 -0
- package/client/index.js +13 -0
- package/client/keyboard.js +27 -0
- package/client/page.js +271 -0
- package/extension/content-script.js +1852 -0
- package/extension/icons/icon-128.png +0 -0
- package/extension/icons/icon-16.png +0 -0
- package/extension/icons/icon-48.png +0 -0
- package/extension/manifest.json +26 -0
- package/extension/service-worker.js +711 -0
- package/human-browser.config.example.js +82 -0
- package/index.js +264 -0
- package/lib/launcher.js +102 -0
- package/lib/server.js +348 -0
- package/package.json +62 -0
- package/protocol/PROTOCOL.md +451 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"manifest_version": 3,
|
|
3
|
+
"name": "Human Browser Bridge",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"author": "Hugo Palma",
|
|
6
|
+
"homepage_url": "https://github.com/hugopalma17/human-browser",
|
|
7
|
+
"description": "CDP-free browser automation with human-like behavior",
|
|
8
|
+
"icons": {
|
|
9
|
+
"16": "icons/icon-16.png",
|
|
10
|
+
"48": "icons/icon-48.png",
|
|
11
|
+
"128": "icons/icon-128.png"
|
|
12
|
+
},
|
|
13
|
+
"background": {
|
|
14
|
+
"service_worker": "service-worker.js"
|
|
15
|
+
},
|
|
16
|
+
"content_scripts": [
|
|
17
|
+
{
|
|
18
|
+
"matches": ["<all_urls>"],
|
|
19
|
+
"js": ["content-script.js"],
|
|
20
|
+
"run_at": "document_start",
|
|
21
|
+
"all_frames": true
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"permissions": ["activeTab", "tabs", "scripting", "cookies", "webRequest", "webNavigation"],
|
|
25
|
+
"host_permissions": ["<all_urls>"]
|
|
26
|
+
}
|