cdp-tunnel 2.6.1 → 2.6.2

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 3,
3
3
  "name": "CDP Bridge",
4
- "version": "2.6.1",
4
+ "version": "2.6.2",
5
5
  "description": "Chrome DevTools Protocol Bridge for Playwright/Puppeteer automation",
6
6
  "permissions": [
7
7
  "debugger",
@@ -71,7 +71,7 @@ body { width: 340px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',
71
71
  </div>
72
72
 
73
73
  <div class="footer">
74
- <a href="https://github.com" target="_blank">v2.5.21</a>
74
+ <a id="versionLink" href="https://github.com/nicepkg/cdp-tunnel" target="_blank"></a>
75
75
  </div>
76
76
 
77
77
  <script src="popup.js"></script>
@@ -110,5 +110,11 @@
110
110
  });
111
111
  });
112
112
 
113
+ var versionLink = $('versionLink');
114
+ if (versionLink) {
115
+ var manifest = chrome.runtime.getManifest();
116
+ versionLink.textContent = 'v' + manifest.version;
117
+ }
118
+
113
119
  loadState();
114
120
  })();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cdp-tunnel",
3
- "version": "2.6.1",
3
+ "version": "2.6.2",
4
4
  "description": "Bridge Chrome's debugger API to WebSocket — control your existing browser with Playwright/Puppeteer via CDP",
5
5
  "main": "server/proxy-server.js",
6
6
  "bin": "./cli/index.js",