Files
playwriter/extension-kapture/manifest.json
Tommy D. Rossi ec02a90812 adding examples
2025-11-13 19:42:44 +01:00

45 lines
1.1 KiB
JSON

{
"manifest_version": 3,
"name": "Kapture MCP Browser Automation",
"short_name": "Kapture",
"version": "0.14.0",
"description": "Remote browser automation via MCP - DevTools Extension",
"author": "William Kapke",
"homepage_url": "https://github.com/williamkapke/kapture",
"permissions": ["activeTab", "debugger"],
"host_permissions": ["<all_urls>"],
"background": {
"service_worker": "background.js",
"type": "module"
},
"devtools_page": "devtools.html",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["console-listener.js"],
"run_at": "document_start",
"all_frames": false,
"world": "MAIN"
},
{
"matches": ["<all_urls>"],
"js": ["page-helpers.js", "content-script.js"],
"run_at": "document_start",
"all_frames": false
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}