fix github links etc
This commit is contained in:
@@ -54,7 +54,7 @@ Playwriter MCP runs locally in your browser and does not send any data to extern
|
|||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
For issues, feature requests, or contributions, visit the [GitHub repository](https://github.com/microsoft/playwright-mcp).
|
For issues, feature requests, or contributions, visit the [GitHub repository](https://github.com/remorses/playwriter).
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"manifest_version": 3,
|
"manifest_version": 3,
|
||||||
"name": "Playwriter MCP",
|
"name": "Playwriter MCP",
|
||||||
"version": "0.0.47",
|
"version": "0.0.48",
|
||||||
"description": "Control Chrome via MCP using CDP events. Connect Playwright without spawning new Chrome instances.",
|
"description": "Control Chrome via MCP using CDP events. Connect Playwright without spawning new Chrome instances.",
|
||||||
"permissions": [
|
"permissions": [
|
||||||
"debugger",
|
"debugger",
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
{
|
{
|
||||||
"name": "@playwright/mcp-extension",
|
"name": "@playwright/mcp-extension",
|
||||||
"version": "0.0.46",
|
"version": "0.0.48",
|
||||||
"description": "Playwright MCP Browser Extension",
|
"description": "Playwright MCP Browser Extension",
|
||||||
"private": true,
|
"private": true,
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/microsoft/playwright-mcp.git"
|
"url": "git+https://github.com/remorses/playwriter.git"
|
||||||
},
|
},
|
||||||
"homepage": "https://playwright.dev",
|
"homepage": "https://github.com/remorses/playwriter",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -33,6 +33,12 @@ async function resetDebugger() {
|
|||||||
}
|
}
|
||||||
resetDebugger()
|
resetDebugger()
|
||||||
|
|
||||||
|
chrome.runtime.onInstalled.addListener((details) => {
|
||||||
|
if (details.reason === 'install') {
|
||||||
|
void chrome.tabs.create({ url: 'welcome.html' })
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
const icons = {
|
const icons = {
|
||||||
connected: {
|
connected: {
|
||||||
path: {
|
path: {
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ export class RelayConnection {
|
|||||||
private _ws: WebSocket;
|
private _ws: WebSocket;
|
||||||
private _closed = false;
|
private _closed = false;
|
||||||
private _onCloseCallback?: () => void;
|
private _onCloseCallback?: () => void;
|
||||||
private _onTabDetachedCallback?: (tabId: number, reason: chrome.debugger.DetachReason) => void
|
private _onTabDetachedCallback?: (tabId: number, reason: `${chrome.debugger.DetachReason}`) => void
|
||||||
|
|
||||||
constructor({ ws, onClose, onTabDetached }: {
|
constructor({ ws, onClose, onTabDetached }: {
|
||||||
ws: WebSocket;
|
ws: WebSocket;
|
||||||
|
|||||||
@@ -33,6 +33,10 @@ export default defineConfig({
|
|||||||
{
|
{
|
||||||
src: resolve(__dirname, 'manifest.json'),
|
src: resolve(__dirname, 'manifest.json'),
|
||||||
dest: '.'
|
dest: '.'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
src: resolve(__dirname, 'welcome.html'),
|
||||||
|
dest: '.'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user