n8n-nodes-multi-profile 1.0.11 → 1.0.13

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/README.MD ADDED
@@ -0,0 +1,141 @@
1
+ # n8n-nodes-multi-profile
2
+
3
+ ![n8n.io - Workflow Automation](https://raw.githubusercontent.com/n8n-io/n8n/master/assets/n8n-logo.png)
4
+
5
+ n8n node to integrate with MultiProfile - A powerful browser automation tool.
6
+
7
+ ## Features
8
+
9
+ - **Profile Management**: Create, open, close and delete browser profiles
10
+ - **Browser Automation**: Control browser with click, type, scroll actions, etc.
11
+ - **Multi-threading**: Run multiple profiles simultaneously
12
+ - **MultiProfile API Integration**: Full access to MultiProfile API
13
+ - **Tab Management**: Open, close, switch tabs flexibly
14
+ - **Upload/Download File**: Easy file handling
15
+ - **Screenshot & Extract Data**: Capture screenshots and extract data
16
+
17
+ ## Installation
18
+
19
+ ### Installation in n8n
20
+
21
+ #### Installation via n8n community nodes
22
+
23
+ 1. Open your n8n
24
+ 2. Go to **Settings** > **Community Nodes**
25
+ 3. Select **Install**
26
+ 4. Enter `n8n-nodes-multi-profile`
27
+ 5. Accept the risks and click **Install**
28
+
29
+ ## Configuration
30
+
31
+ ### MultiProfile credentials
32
+
33
+ This node requires MultiProfile to be running on your machine. Download MultiProfile at:
34
+ - [https://multiprofile.info](https://multiprofile.info)
35
+
36
+ ### Setup credentials
37
+
38
+ 1. Start MultiProfile
39
+ 3. Ensure API port (default: 3000) is running
40
+
41
+ ## Usage
42
+
43
+ ### Basic actions
44
+
45
+ #### 1. Open Profile
46
+ ```json
47
+ {
48
+ "action": "openProfile",
49
+ "profileId": "your-profile-id"
50
+ }
51
+ ```
52
+
53
+ ### Workflow Examples
54
+
55
+ #### Example 1: Open profile and access website
56
+
57
+ ```json
58
+ {
59
+ "nodes": [
60
+ {
61
+ "name": "Open Profile",
62
+ "type": "n8n-nodes-multi-profile.multiProfile",
63
+ "parameters": {
64
+ "action": "openProfile",
65
+ "profileId": "profile-123"
66
+ }
67
+ },
68
+ {
69
+ "name": "Navigate",
70
+ "type": "n8n-nodes-multi-profile.multiProfile",
71
+ "parameters": {
72
+ "action": "browserAction",
73
+ "operation": "loadUrl",
74
+ "url": "https://example.com"
75
+ }
76
+ }
77
+ ]
78
+ }
79
+ ```
80
+
81
+ ## Supported Commands
82
+
83
+ ### Profile Management
84
+ - `OPEN_PROFILE|profileId` - Open profile
85
+ - `CLOSE_PROFILE` - Close profile
86
+ - `CREATE_PROFILE|profileName` - Create new profile
87
+ - `DELETE_PROFILE|profileId` - Delete profile
88
+
89
+ ### Browser Actions
90
+ - `LOAD_URL|url` - Access URL
91
+ - `CLICK|selector` - Click on element
92
+ - `TYPE|selector|text` - Type text
93
+ - `FILL|selector|value` - Fill value
94
+ - `SCREENSHOT|selector|filePath` - Capture screenshot
95
+ - `GET_TEXT|selector` - Get text from element
96
+ - `WAIT|milliseconds` - Wait
97
+
98
+ ### Tab Management
99
+ - `NEW_TAB` - Open new tab
100
+ - `CLOSE_TAB|tabIndex` - Close tab
101
+ - `SELECT_TAB|tabIndex` - Switch tab
102
+ - `GET_TABS` - Get list of tabs
103
+
104
+ ### Advanced
105
+ - `RUN_JAVASCRIPT|code` - Run JavaScript
106
+ - `UPLOAD_FILE|selector|filePath` - Upload file
107
+ - `DOWNLOAD_FILE|url|savePath` - Download file
108
+
109
+ ## Troubleshooting
110
+
111
+ ### Cannot connect to MultiProfile
112
+ - Check if MultiProfile is running
113
+ - Verify API port (default: 3000) is not blocked
114
+ - Check firewall settings
115
+
116
+ ### Browser does not open
117
+ - Ensure profile ID is valid
118
+ - Check logs in n8n for error details
119
+
120
+ ### Timeout error
121
+ - Increase timeout in settings
122
+ - Check network speed
123
+ - Reduce number of threads
124
+
125
+
126
+ ## License
127
+
128
+ [MIT](LICENSE)
129
+
130
+ ## Support
131
+
132
+ - Documentation: [https://files.multiprofile.info/docs/index.html](https://files.multiprofile.info/docs/index.html)
133
+ - Email: nkvinh@gmail.com
134
+
135
+ ## Credits
136
+
137
+ Developed by [MultiProfile Team](https://multiprofile.info)
138
+
139
+ ---
140
+
141
+ **Note:** This node requires MultiProfile to be installed and running on your machine. Download MultiProfile at [https://multiprofile.info](https://multiprofile.info)