fix github links etc

This commit is contained in:
Tommy D. Rossi
2025-11-16 10:11:11 +01:00
parent cd9b2faf72
commit 90f02e8966
6 changed files with 16 additions and 6 deletions
+1 -1
View File
@@ -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 -1
View File
@@ -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",
+3 -3
View File
@@ -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"
},
+6
View File
@@ -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: {
+1 -1
View File
@@ -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;
+4
View File
@@ -33,6 +33,10 @@ export default defineConfig({
{
src: resolve(__dirname, 'manifest.json'),
dest: '.'
},
{
src: resolve(__dirname, 'welcome.html'),
dest: '.'
}
]
})