app
Pup - Puppeteer Bridge
Public Made by Adomby adom
pup is the AI's own browser: a real, full Chrome on the user's desktop that the AI fully controls (a sandbox, not the user's signed-in browser). Rides Bridge; pup_* verbs open windows and tabs, navigate, screenshot, and eval JS.
{
"manifest_version": 3,
"name": "Adom Pup",
"version": "0.2.2",
"description": "Toolbar for Adom Pup browser windows: annotate, snip, view toggle, dashboard, owner info. Thin trigger surface - the pup bridge is the engine.",
"action": {
"default_popup": "popup.html",
"default_title": "Adom Pup"
},
"background": {
"service_worker": "worker.js"
},
"permissions": [
"storage",
"tabs",
"alarms",
"scripting"
],
"host_permissions": [
"http://127.0.0.1/*",
"http://*/*",
"https://*/*"
],
"commands": {
"pup-snip": {
"suggested_key": {
"default": "Alt+Shift+A"
},
"description": "Annotate this page (red pen)"
}
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}