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
|
||||
|
||||
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
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"manifest_version": 3,
|
||||
"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.",
|
||||
"permissions": [
|
||||
"debugger",
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
{
|
||||
"name": "@playwright/mcp-extension",
|
||||
"version": "0.0.46",
|
||||
"version": "0.0.48",
|
||||
"description": "Playwright MCP Browser Extension",
|
||||
"private": true,
|
||||
"repository": {
|
||||
"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": {
|
||||
"node": ">=18"
|
||||
},
|
||||
|
||||
@@ -33,6 +33,12 @@ async function resetDebugger() {
|
||||
}
|
||||
resetDebugger()
|
||||
|
||||
chrome.runtime.onInstalled.addListener((details) => {
|
||||
if (details.reason === 'install') {
|
||||
void chrome.tabs.create({ url: 'welcome.html' })
|
||||
}
|
||||
})
|
||||
|
||||
const icons = {
|
||||
connected: {
|
||||
path: {
|
||||
|
||||
@@ -43,7 +43,7 @@ export class RelayConnection {
|
||||
private _ws: WebSocket;
|
||||
private _closed = false;
|
||||
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 }: {
|
||||
ws: WebSocket;
|
||||
|
||||
@@ -33,6 +33,10 @@ export default defineConfig({
|
||||
{
|
||||
src: resolve(__dirname, 'manifest.json'),
|
||||
dest: '.'
|
||||
},
|
||||
{
|
||||
src: resolve(__dirname, 'welcome.html'),
|
||||
dest: '.'
|
||||
}
|
||||
]
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user