Files
playwriter/extension/manifest.json
Tommy D. Rossi 1ced689153 extension: remove chrome.alarms keepalive and alarms permission
The alarm added in 0.0.73 was a no-op — the maintainLoop while(true) + sleep(1000)
and setInterval(checkMemory, 5000) already keep the service worker alive.
Removing it drops the unnecessary alarms permission from the manifest.

Bumps extension to 0.0.75.
2026-03-10 21:28:17 +01:00

37 lines
898 B
JSON

{
"manifest_version": 3,
"name": "Playwriter",
"version": "0.0.75",
"description": "Automate your Browser using Cursor, Claude, VS Code. More capable and context efficient than Playwright MCP.",
"permissions": [
"debugger",
"tabGroups",
"contextMenus",
"tabs",
"tabCapture",
"offscreen",
"identity",
"identity.email"
],
"host_permissions": ["<all_urls>"],
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_title": "Click to attach debugger",
"default_icon": {
"16": "icons/icon-gray-16.png",
"32": "icons/icon-gray-32.png",
"48": "icons/icon-gray-48.png",
"128": "icons/icon-gray-128.png"
}
},
"icons": {
"16": "icons/icon-gray-16.png",
"32": "icons/icon-gray-32.png",
"48": "icons/icon-gray-48.png",
"128": "icons/icon-gray-128.png"
}
}