cdp-tunnel 2.10.3 → 2.10.4
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
CHANGED
|
@@ -71,15 +71,16 @@ cdp-tunnel status
|
|
|
71
71
|
cdp-tunnel extension
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
-
### Option 2: Download from GitHub Releases
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
74
|
+
### Option 2: Download Extension from GitHub Releases
|
|
75
|
+
|
|
76
|
+
**Download Extension:** [cdp-tunnel-extension.zip (v2.10.3)](https://github.com/dyyz1993/cdp-tunnel/releases/tag/v2.10.3)
|
|
77
|
+
|
|
78
|
+
1. Download `cdp-tunnel-extension.zip` from the latest [GitHub Releases](https://github.com/dyyz1993/cdp-tunnel/releases)
|
|
79
|
+
2. Unzip the file
|
|
80
|
+
3. Open `chrome://extensions/` in Chrome
|
|
81
|
+
4. Enable "Developer mode"
|
|
82
|
+
5. Click "Load unpacked"
|
|
83
|
+
6. Select the unzipped extension directory
|
|
83
84
|
|
|
84
85
|
### Option 3: Manual Installation
|
|
85
86
|
|
|
@@ -241,7 +241,6 @@ var WebSocketConnection = (function() {
|
|
|
241
241
|
Logger.info('[WS:' + self.connectionId + '] Client connected, resuming event forwarding');
|
|
242
242
|
self.state.setHasConnectedClient(true);
|
|
243
243
|
self.state.addCDPClient(message.clientId, message.clientId);
|
|
244
|
-
self._createGroupForClient(message.clientId, message.__mode);
|
|
245
244
|
self._broadcastStateUpdate();
|
|
246
245
|
break;
|
|
247
246
|
|
package/package.json
CHANGED