adding examples

This commit is contained in:
Tommy D. Rossi
2025-11-13 19:42:44 +01:00
parent ac5322e580
commit ec02a90812
57 changed files with 8226 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
{
"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"
}
}