chrome-devtools-mcp-for-extension 0.8.2 → 0.8.3
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/build/src/browser.js +2 -2
- package/package.json +1 -1
package/build/src/browser.js
CHANGED
|
@@ -450,9 +450,9 @@ async function ensureBrowserLaunched(options) {
|
|
|
450
450
|
return browser;
|
|
451
451
|
}
|
|
452
452
|
export async function resolveBrowser(options) {
|
|
453
|
-
const
|
|
453
|
+
const resolvedBrowser = options.browserUrl
|
|
454
454
|
? await ensureBrowserConnected(options.browserUrl)
|
|
455
455
|
: await ensureBrowserLaunched(options);
|
|
456
|
-
return
|
|
456
|
+
return resolvedBrowser;
|
|
457
457
|
}
|
|
458
458
|
export { scanExtensionsDirectory, discoverSystemExtensions, getChromeExtensionsDirectory, validateExtensionManifest };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chrome-devtools-mcp-for-extension",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.3",
|
|
4
4
|
"description": "MCP server for Chrome extension development with Web Store automation. Fork of chrome-devtools-mcp with extension-specific tools.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": "./build/src/index.js",
|