n8n-nodes-nvk-browser 1.0.12 → 1.0.14

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.
Files changed (40) hide show
  1. package/README.md +12 -6
  2. package/dist/nodes/PageInteraction/BrowserHttpRequest/BrowserHttpRequest.node.js +1 -0
  3. package/dist/nodes/PageInteraction/BrowserHttpRequest/click.svg +5 -0
  4. package/dist/nodes/PageInteraction/BrowserHttpRequest/code.svg +5 -0
  5. package/dist/nodes/PageInteraction/BrowserHttpRequest/http.svg +6 -0
  6. package/dist/nodes/PageInteraction/BrowserHttpRequest/network.svg +13 -0
  7. package/dist/nodes/PageInteraction/BrowserHttpRequest/package.svg +7 -0
  8. package/dist/nodes/PageInteraction/BrowserHttpRequest/profile.svg +5 -0
  9. package/dist/nodes/PageInteraction/GetNetworkResponse/GetNetworkResponse.node.js +1 -0
  10. package/dist/nodes/PageInteraction/GetNetworkResponse/click.svg +5 -0
  11. package/dist/nodes/PageInteraction/GetNetworkResponse/code.svg +5 -0
  12. package/dist/nodes/PageInteraction/GetNetworkResponse/http.svg +6 -0
  13. package/dist/nodes/PageInteraction/GetNetworkResponse/network.svg +13 -0
  14. package/dist/nodes/PageInteraction/GetNetworkResponse/package.svg +7 -0
  15. package/dist/nodes/PageInteraction/GetNetworkResponse/profile.svg +5 -0
  16. package/dist/nodes/PageInteraction/MoveAndClick/MoveAndClick.node.js +1 -0
  17. package/dist/nodes/PageInteraction/MoveAndClick/http.svg +6 -0
  18. package/dist/nodes/PageInteraction/MoveAndClick/network.svg +13 -0
  19. package/dist/nodes/PageInteraction/MoveAndClick/package.svg +7 -0
  20. package/dist/nodes/PageInteraction/RunJavaScript/RunJavaScript.node.js +1 -0
  21. package/dist/nodes/PageInteraction/RunJavaScript/http.svg +6 -0
  22. package/dist/nodes/PageInteraction/RunJavaScript/network.svg +13 -0
  23. package/dist/nodes/PageInteraction/RunJavaScript/package.svg +7 -0
  24. package/dist/nodes/ProfileManagement/CreateProfile/CreateProfile.node.js +1 -0
  25. package/dist/nodes/ProfileManagement/CreateProfile/http.svg +6 -0
  26. package/dist/nodes/ProfileManagement/CreateProfile/network.svg +13 -0
  27. package/dist/nodes/ProfileManagement/CreateProfile/package.svg +7 -0
  28. package/dist/nodes/ProfileManagement/DeleteProfile/DeleteProfile.node.js +1 -0
  29. package/dist/nodes/ProfileManagement/DeleteProfile/http.svg +6 -0
  30. package/dist/nodes/ProfileManagement/DeleteProfile/network.svg +13 -0
  31. package/dist/nodes/ProfileManagement/DeleteProfile/package.svg +7 -0
  32. package/dist/nodes/ProfileManagement/StartProfile/StartProfile.node.js +1 -0
  33. package/dist/nodes/ProfileManagement/StartProfile/http.svg +6 -0
  34. package/dist/nodes/ProfileManagement/StartProfile/network.svg +13 -0
  35. package/dist/nodes/ProfileManagement/StartProfile/package.svg +7 -0
  36. package/dist/nodes/ProfileManagement/StopProfile/StopProfile.node.js +1 -0
  37. package/dist/nodes/ProfileManagement/StopProfile/http.svg +6 -0
  38. package/dist/nodes/ProfileManagement/StopProfile/network.svg +13 -0
  39. package/dist/nodes/ProfileManagement/StopProfile/package.svg +7 -0
  40. package/package.json +9 -3
package/README.md CHANGED
@@ -1,18 +1,24 @@
1
- # n8n-nodes-nvk-browser
1
+ # NVK Browser - n8n Nodes Package
2
2
 
3
- n8n custom nodes for managing Chrome browser profiles and page interactions.
3
+ n8n custom nodes package for managing Chrome browser profiles and page interactions with Puppeteer automation.
4
+
5
+ ## Package: NVK Browser
6
+
7
+ Search for **"nvk-browser"** in n8n to find all nodes in this package.
4
8
 
5
9
  ## Features
6
10
 
7
- ### Profile Management
11
+ ### Profile Management Actions
8
12
  - **Create Profile**: Create new browser profiles with proxy, extensions, and notes
9
13
  - **Delete Profile**: Delete existing profiles
10
14
  - **Start Profile**: Launch Chrome with a specific profile
11
15
  - **Stop Profile**: Stop a running browser instance
12
16
 
13
- ### Page Interaction
14
- - **Move and Click**: Click on page elements using different methods (GhostCursor, Puppeteer, JavaScript)
15
- - **Run JavaScript**: Execute JavaScript code in browser tabs
17
+ ### Page Interaction Actions
18
+ - **Move and Click**: Click on page elements using Puppeteer Locator.race() or JavaScript. Supports multiple click/fill actions automatically.
19
+ - **Run JavaScript**: Execute JavaScript code in browser tabs (supports both browser context and Puppeteer API)
20
+ - **Get Network Response**: Capture network request responses by name or URL pattern
21
+ - **Browser HTTP Request**: Make HTTP requests using browser profile cookies and headers to bypass Cloudflare protection
16
22
 
17
23
  ## Installation
18
24
 
@@ -35,6 +35,7 @@ class BrowserHttpRequest {
35
35
  icon: 'file:http.svg',
36
36
  group: ['transform'],
37
37
  version: 1,
38
+ subtitle: '={{$parameter["operation"]}}',
38
39
  description: 'Make HTTP requests using browser profile cookies and headers to bypass Cloudflare',
39
40
  defaults: {
40
41
  name: 'Browser HTTP Request',
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
2
+ <path d="M9 9l5 12 1.774-5.226L21 14 9 9z"></path>
3
+ <path d="M21 3l-3.5 3.5"></path>
4
+ </svg>
5
+
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
2
+ <polyline points="16 18 22 12 16 6"></polyline>
3
+ <polyline points="8 6 2 12 8 18"></polyline>
4
+ </svg>
5
+
@@ -0,0 +1,6 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="8" y="20" width="48" height="24" rx="4" stroke="#4F46E5" stroke-width="3" fill="none"/>
3
+ <path d="M16 32L24 24M16 32L24 40M48 32L40 24M48 32L40 40" stroke="#4F46E5" stroke-width="3" stroke-linecap="round"/>
4
+ <circle cx="32" cy="32" r="3" fill="#4F46E5"/>
5
+ </svg>
6
+
@@ -0,0 +1,13 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="32" cy="32" r="20" stroke="#4F46E5" stroke-width="3" fill="none"/>
3
+ <circle cx="32" cy="32" r="8" fill="#4F46E5"/>
4
+ <circle cx="12" cy="20" r="4" fill="#4F46E5"/>
5
+ <circle cx="52" cy="20" r="4" fill="#4F46E5"/>
6
+ <circle cx="12" cy="44" r="4" fill="#4F46E5"/>
7
+ <circle cx="52" cy="44" r="4" fill="#4F46E5"/>
8
+ <line x1="32" y1="32" x2="16" y2="20" stroke="#4F46E5" stroke-width="2"/>
9
+ <line x1="32" y1="32" x2="48" y2="20" stroke="#4F46E5" stroke-width="2"/>
10
+ <line x1="32" y1="32" x2="16" y2="44" stroke="#4F46E5" stroke-width="2"/>
11
+ <line x1="32" y1="32" x2="48" y2="44" stroke="#4F46E5" stroke-width="2"/>
12
+ </svg>
13
+
@@ -0,0 +1,7 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="64" height="64" rx="12" fill="#4F46E5"/>
3
+ <path d="M32 12L20 18V30L32 36L44 30V18L32 12Z" fill="white" opacity="0.9"/>
4
+ <path d="M20 30L32 36L44 30M20 30L32 24L44 30M20 30V42L32 48L44 42V30" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <circle cx="32" cy="52" r="4" fill="white" opacity="0.7"/>
6
+ </svg>
7
+
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
2
+ <path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path>
3
+ <circle cx="12" cy="7" r="4"></circle>
4
+ </svg>
5
+
@@ -35,6 +35,7 @@ class GetNetworkResponse {
35
35
  icon: 'file:network.svg',
36
36
  group: ['transform'],
37
37
  version: 1,
38
+ subtitle: '={{$parameter["operation"]}}',
38
39
  description: 'Capture and return the response of a network request by name or URL',
39
40
  defaults: {
40
41
  name: 'Get Network Response',
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
2
+ <path d="M9 9l5 12 1.774-5.226L21 14 9 9z"></path>
3
+ <path d="M21 3l-3.5 3.5"></path>
4
+ </svg>
5
+
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
2
+ <polyline points="16 18 22 12 16 6"></polyline>
3
+ <polyline points="8 6 2 12 8 18"></polyline>
4
+ </svg>
5
+
@@ -0,0 +1,6 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="8" y="20" width="48" height="24" rx="4" stroke="#4F46E5" stroke-width="3" fill="none"/>
3
+ <path d="M16 32L24 24M16 32L24 40M48 32L40 24M48 32L40 40" stroke="#4F46E5" stroke-width="3" stroke-linecap="round"/>
4
+ <circle cx="32" cy="32" r="3" fill="#4F46E5"/>
5
+ </svg>
6
+
@@ -0,0 +1,13 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="32" cy="32" r="20" stroke="#4F46E5" stroke-width="3" fill="none"/>
3
+ <circle cx="32" cy="32" r="8" fill="#4F46E5"/>
4
+ <circle cx="12" cy="20" r="4" fill="#4F46E5"/>
5
+ <circle cx="52" cy="20" r="4" fill="#4F46E5"/>
6
+ <circle cx="12" cy="44" r="4" fill="#4F46E5"/>
7
+ <circle cx="52" cy="44" r="4" fill="#4F46E5"/>
8
+ <line x1="32" y1="32" x2="16" y2="20" stroke="#4F46E5" stroke-width="2"/>
9
+ <line x1="32" y1="32" x2="48" y2="20" stroke="#4F46E5" stroke-width="2"/>
10
+ <line x1="32" y1="32" x2="16" y2="44" stroke="#4F46E5" stroke-width="2"/>
11
+ <line x1="32" y1="32" x2="48" y2="44" stroke="#4F46E5" stroke-width="2"/>
12
+ </svg>
13
+
@@ -0,0 +1,7 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="64" height="64" rx="12" fill="#4F46E5"/>
3
+ <path d="M32 12L20 18V30L32 36L44 30V18L32 12Z" fill="white" opacity="0.9"/>
4
+ <path d="M20 30L32 36L44 30M20 30L32 24L44 30M20 30V42L32 48L44 42V30" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <circle cx="32" cy="52" r="4" fill="white" opacity="0.7"/>
6
+ </svg>
7
+
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
2
+ <path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path>
3
+ <circle cx="12" cy="7" r="4"></circle>
4
+ </svg>
5
+
@@ -39,6 +39,7 @@ class MoveAndClick {
39
39
  icon: 'file:click.svg',
40
40
  group: ['transform'],
41
41
  version: 1,
42
+ subtitle: '={{$parameter["operation"]}}',
42
43
  description: 'Move mouse and click on an element',
43
44
  defaults: {
44
45
  name: 'Move and Click',
@@ -0,0 +1,6 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="8" y="20" width="48" height="24" rx="4" stroke="#4F46E5" stroke-width="3" fill="none"/>
3
+ <path d="M16 32L24 24M16 32L24 40M48 32L40 24M48 32L40 40" stroke="#4F46E5" stroke-width="3" stroke-linecap="round"/>
4
+ <circle cx="32" cy="32" r="3" fill="#4F46E5"/>
5
+ </svg>
6
+
@@ -0,0 +1,13 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="32" cy="32" r="20" stroke="#4F46E5" stroke-width="3" fill="none"/>
3
+ <circle cx="32" cy="32" r="8" fill="#4F46E5"/>
4
+ <circle cx="12" cy="20" r="4" fill="#4F46E5"/>
5
+ <circle cx="52" cy="20" r="4" fill="#4F46E5"/>
6
+ <circle cx="12" cy="44" r="4" fill="#4F46E5"/>
7
+ <circle cx="52" cy="44" r="4" fill="#4F46E5"/>
8
+ <line x1="32" y1="32" x2="16" y2="20" stroke="#4F46E5" stroke-width="2"/>
9
+ <line x1="32" y1="32" x2="48" y2="20" stroke="#4F46E5" stroke-width="2"/>
10
+ <line x1="32" y1="32" x2="16" y2="44" stroke="#4F46E5" stroke-width="2"/>
11
+ <line x1="32" y1="32" x2="48" y2="44" stroke="#4F46E5" stroke-width="2"/>
12
+ </svg>
13
+
@@ -0,0 +1,7 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="64" height="64" rx="12" fill="#4F46E5"/>
3
+ <path d="M32 12L20 18V30L32 36L44 30V18L32 12Z" fill="white" opacity="0.9"/>
4
+ <path d="M20 30L32 36L44 30M20 30L32 24L44 30M20 30V42L32 48L44 42V30" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <circle cx="32" cy="52" r="4" fill="white" opacity="0.7"/>
6
+ </svg>
7
+
@@ -35,6 +35,7 @@ class RunJavaScript {
35
35
  icon: 'file:code.svg',
36
36
  group: ['transform'],
37
37
  version: 1,
38
+ subtitle: '={{$parameter["operation"]}}',
38
39
  description: 'Execute JavaScript code in the browser',
39
40
  defaults: {
40
41
  name: 'Run JavaScript',
@@ -0,0 +1,6 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="8" y="20" width="48" height="24" rx="4" stroke="#4F46E5" stroke-width="3" fill="none"/>
3
+ <path d="M16 32L24 24M16 32L24 40M48 32L40 24M48 32L40 40" stroke="#4F46E5" stroke-width="3" stroke-linecap="round"/>
4
+ <circle cx="32" cy="32" r="3" fill="#4F46E5"/>
5
+ </svg>
6
+
@@ -0,0 +1,13 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="32" cy="32" r="20" stroke="#4F46E5" stroke-width="3" fill="none"/>
3
+ <circle cx="32" cy="32" r="8" fill="#4F46E5"/>
4
+ <circle cx="12" cy="20" r="4" fill="#4F46E5"/>
5
+ <circle cx="52" cy="20" r="4" fill="#4F46E5"/>
6
+ <circle cx="12" cy="44" r="4" fill="#4F46E5"/>
7
+ <circle cx="52" cy="44" r="4" fill="#4F46E5"/>
8
+ <line x1="32" y1="32" x2="16" y2="20" stroke="#4F46E5" stroke-width="2"/>
9
+ <line x1="32" y1="32" x2="48" y2="20" stroke="#4F46E5" stroke-width="2"/>
10
+ <line x1="32" y1="32" x2="16" y2="44" stroke="#4F46E5" stroke-width="2"/>
11
+ <line x1="32" y1="32" x2="48" y2="44" stroke="#4F46E5" stroke-width="2"/>
12
+ </svg>
13
+
@@ -0,0 +1,7 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="64" height="64" rx="12" fill="#4F46E5"/>
3
+ <path d="M32 12L20 18V30L32 36L44 30V18L32 12Z" fill="white" opacity="0.9"/>
4
+ <path d="M20 30L32 36L44 30M20 30L32 24L44 30M20 30V42L32 48L44 42V30" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <circle cx="32" cy="52" r="4" fill="white" opacity="0.7"/>
6
+ </svg>
7
+
@@ -36,6 +36,7 @@ class CreateProfile {
36
36
  icon: 'file:profile.svg',
37
37
  group: ['transform'],
38
38
  version: 1,
39
+ subtitle: '={{$parameter["operation"]}}',
39
40
  description: 'Create a new browser profile',
40
41
  defaults: {
41
42
  name: 'Create Profile',
@@ -0,0 +1,6 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="8" y="20" width="48" height="24" rx="4" stroke="#4F46E5" stroke-width="3" fill="none"/>
3
+ <path d="M16 32L24 24M16 32L24 40M48 32L40 24M48 32L40 40" stroke="#4F46E5" stroke-width="3" stroke-linecap="round"/>
4
+ <circle cx="32" cy="32" r="3" fill="#4F46E5"/>
5
+ </svg>
6
+
@@ -0,0 +1,13 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="32" cy="32" r="20" stroke="#4F46E5" stroke-width="3" fill="none"/>
3
+ <circle cx="32" cy="32" r="8" fill="#4F46E5"/>
4
+ <circle cx="12" cy="20" r="4" fill="#4F46E5"/>
5
+ <circle cx="52" cy="20" r="4" fill="#4F46E5"/>
6
+ <circle cx="12" cy="44" r="4" fill="#4F46E5"/>
7
+ <circle cx="52" cy="44" r="4" fill="#4F46E5"/>
8
+ <line x1="32" y1="32" x2="16" y2="20" stroke="#4F46E5" stroke-width="2"/>
9
+ <line x1="32" y1="32" x2="48" y2="20" stroke="#4F46E5" stroke-width="2"/>
10
+ <line x1="32" y1="32" x2="16" y2="44" stroke="#4F46E5" stroke-width="2"/>
11
+ <line x1="32" y1="32" x2="48" y2="44" stroke="#4F46E5" stroke-width="2"/>
12
+ </svg>
13
+
@@ -0,0 +1,7 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="64" height="64" rx="12" fill="#4F46E5"/>
3
+ <path d="M32 12L20 18V30L32 36L44 30V18L32 12Z" fill="white" opacity="0.9"/>
4
+ <path d="M20 30L32 36L44 30M20 30L32 24L44 30M20 30V42L32 48L44 42V30" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <circle cx="32" cy="52" r="4" fill="white" opacity="0.7"/>
6
+ </svg>
7
+
@@ -36,6 +36,7 @@ class DeleteProfile {
36
36
  icon: 'file:profile.svg',
37
37
  group: ['transform'],
38
38
  version: 1,
39
+ subtitle: '={{$parameter["operation"]}}',
39
40
  description: 'Delete a browser profile',
40
41
  defaults: {
41
42
  name: 'Delete Profile',
@@ -0,0 +1,6 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="8" y="20" width="48" height="24" rx="4" stroke="#4F46E5" stroke-width="3" fill="none"/>
3
+ <path d="M16 32L24 24M16 32L24 40M48 32L40 24M48 32L40 40" stroke="#4F46E5" stroke-width="3" stroke-linecap="round"/>
4
+ <circle cx="32" cy="32" r="3" fill="#4F46E5"/>
5
+ </svg>
6
+
@@ -0,0 +1,13 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="32" cy="32" r="20" stroke="#4F46E5" stroke-width="3" fill="none"/>
3
+ <circle cx="32" cy="32" r="8" fill="#4F46E5"/>
4
+ <circle cx="12" cy="20" r="4" fill="#4F46E5"/>
5
+ <circle cx="52" cy="20" r="4" fill="#4F46E5"/>
6
+ <circle cx="12" cy="44" r="4" fill="#4F46E5"/>
7
+ <circle cx="52" cy="44" r="4" fill="#4F46E5"/>
8
+ <line x1="32" y1="32" x2="16" y2="20" stroke="#4F46E5" stroke-width="2"/>
9
+ <line x1="32" y1="32" x2="48" y2="20" stroke="#4F46E5" stroke-width="2"/>
10
+ <line x1="32" y1="32" x2="16" y2="44" stroke="#4F46E5" stroke-width="2"/>
11
+ <line x1="32" y1="32" x2="48" y2="44" stroke="#4F46E5" stroke-width="2"/>
12
+ </svg>
13
+
@@ -0,0 +1,7 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="64" height="64" rx="12" fill="#4F46E5"/>
3
+ <path d="M32 12L20 18V30L32 36L44 30V18L32 12Z" fill="white" opacity="0.9"/>
4
+ <path d="M20 30L32 36L44 30M20 30L32 24L44 30M20 30V42L32 48L44 42V30" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <circle cx="32" cy="52" r="4" fill="white" opacity="0.7"/>
6
+ </svg>
7
+
@@ -35,6 +35,7 @@ class StartProfile {
35
35
  icon: 'file:profile.svg',
36
36
  group: ['transform'],
37
37
  version: 1,
38
+ subtitle: '={{$parameter["operation"]}}',
38
39
  description: 'Start a browser profile',
39
40
  defaults: {
40
41
  name: 'Start Profile',
@@ -0,0 +1,6 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="8" y="20" width="48" height="24" rx="4" stroke="#4F46E5" stroke-width="3" fill="none"/>
3
+ <path d="M16 32L24 24M16 32L24 40M48 32L40 24M48 32L40 40" stroke="#4F46E5" stroke-width="3" stroke-linecap="round"/>
4
+ <circle cx="32" cy="32" r="3" fill="#4F46E5"/>
5
+ </svg>
6
+
@@ -0,0 +1,13 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="32" cy="32" r="20" stroke="#4F46E5" stroke-width="3" fill="none"/>
3
+ <circle cx="32" cy="32" r="8" fill="#4F46E5"/>
4
+ <circle cx="12" cy="20" r="4" fill="#4F46E5"/>
5
+ <circle cx="52" cy="20" r="4" fill="#4F46E5"/>
6
+ <circle cx="12" cy="44" r="4" fill="#4F46E5"/>
7
+ <circle cx="52" cy="44" r="4" fill="#4F46E5"/>
8
+ <line x1="32" y1="32" x2="16" y2="20" stroke="#4F46E5" stroke-width="2"/>
9
+ <line x1="32" y1="32" x2="48" y2="20" stroke="#4F46E5" stroke-width="2"/>
10
+ <line x1="32" y1="32" x2="16" y2="44" stroke="#4F46E5" stroke-width="2"/>
11
+ <line x1="32" y1="32" x2="48" y2="44" stroke="#4F46E5" stroke-width="2"/>
12
+ </svg>
13
+
@@ -0,0 +1,7 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="64" height="64" rx="12" fill="#4F46E5"/>
3
+ <path d="M32 12L20 18V30L32 36L44 30V18L32 12Z" fill="white" opacity="0.9"/>
4
+ <path d="M20 30L32 36L44 30M20 30L32 24L44 30M20 30V42L32 48L44 42V30" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <circle cx="32" cy="52" r="4" fill="white" opacity="0.7"/>
6
+ </svg>
7
+
@@ -35,6 +35,7 @@ class StopProfile {
35
35
  icon: 'file:profile.svg',
36
36
  group: ['transform'],
37
37
  version: 1,
38
+ subtitle: '={{$parameter["operation"]}}',
38
39
  description: 'Stop a running browser profile',
39
40
  defaults: {
40
41
  name: 'Stop Profile',
@@ -0,0 +1,6 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="8" y="20" width="48" height="24" rx="4" stroke="#4F46E5" stroke-width="3" fill="none"/>
3
+ <path d="M16 32L24 24M16 32L24 40M48 32L40 24M48 32L40 40" stroke="#4F46E5" stroke-width="3" stroke-linecap="round"/>
4
+ <circle cx="32" cy="32" r="3" fill="#4F46E5"/>
5
+ </svg>
6
+
@@ -0,0 +1,13 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="32" cy="32" r="20" stroke="#4F46E5" stroke-width="3" fill="none"/>
3
+ <circle cx="32" cy="32" r="8" fill="#4F46E5"/>
4
+ <circle cx="12" cy="20" r="4" fill="#4F46E5"/>
5
+ <circle cx="52" cy="20" r="4" fill="#4F46E5"/>
6
+ <circle cx="12" cy="44" r="4" fill="#4F46E5"/>
7
+ <circle cx="52" cy="44" r="4" fill="#4F46E5"/>
8
+ <line x1="32" y1="32" x2="16" y2="20" stroke="#4F46E5" stroke-width="2"/>
9
+ <line x1="32" y1="32" x2="48" y2="20" stroke="#4F46E5" stroke-width="2"/>
10
+ <line x1="32" y1="32" x2="16" y2="44" stroke="#4F46E5" stroke-width="2"/>
11
+ <line x1="32" y1="32" x2="48" y2="44" stroke="#4F46E5" stroke-width="2"/>
12
+ </svg>
13
+
@@ -0,0 +1,7 @@
1
+ <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="64" height="64" rx="12" fill="#4F46E5"/>
3
+ <path d="M32 12L20 18V30L32 36L44 30V18L32 12Z" fill="white" opacity="0.9"/>
4
+ <path d="M20 30L32 36L44 30M20 30L32 24L44 30M20 30V42L32 48L44 42V30" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <circle cx="32" cy="52" r="4" fill="white" opacity="0.7"/>
6
+ </svg>
7
+
package/package.json CHANGED
@@ -1,14 +1,19 @@
1
1
  {
2
2
  "name": "n8n-nodes-nvk-browser",
3
- "version": "1.0.12",
4
- "description": "n8n nodes for managing Chrome browser profiles and page interactions",
3
+ "version": "1.0.14",
4
+ "displayName": "NVK Browser",
5
+ "description": "n8n nodes for managing Chrome browser profiles and page interactions with Puppeteer automation",
5
6
  "keywords": [
6
7
  "n8n-community-node-package",
7
8
  "n8n",
9
+ "nvk-browser",
8
10
  "chrome",
9
11
  "browser",
10
12
  "automation",
11
- "puppeteer"
13
+ "puppeteer",
14
+ "profile",
15
+ "browser automation",
16
+ "web automation"
12
17
  ],
13
18
  "license": "MIT",
14
19
  "homepage": "",
@@ -33,6 +38,7 @@
33
38
  ],
34
39
  "n8n": {
35
40
  "n8nNodesApiVersion": 1,
41
+ "credentials": [],
36
42
  "nodes": [
37
43
  "dist/nodes/ProfileManagement/CreateProfile/CreateProfile.node.js",
38
44
  "dist/nodes/ProfileManagement/DeleteProfile/DeleteProfile.node.js",