browsentic 0.4.11 → 0.4.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"manifest_version":3,"name":"Browsentic","description":"Reimagine browsing as agentic — driven by the AI agent you already run, in your own logged-in browser.","version":"0.4.11","icons":{"16":"icon/16.png","32":"icon/32.png","48":"icon/48.png","96":"icon/96.png","128":"icon/128.png"},"permissions":["storage","unlimitedStorage","activeTab","sidePanel","contextMenus","alarms","scripting","notifications","debugger","downloads"],"host_permissions":["<all_urls>"],"background":{"service_worker":"background.js"},"action":{"default_title":"Browsentic","default_popup":"popup.html"},"side_panel":{"default_path":"sidepanel.html"},"content_scripts":[{"matches":["*://*/*"],"js":["content-scripts/content.js"]}]}
1
+ {"manifest_version":3,"name":"Browsentic","description":"Reimagine browsing as agentic — driven by the AI agent you already run, in your own logged-in browser.","version":"0.4.12","icons":{"16":"icon/16.png","32":"icon/32.png","48":"icon/48.png","96":"icon/96.png","128":"icon/128.png"},"permissions":["storage","unlimitedStorage","activeTab","sidePanel","contextMenus","alarms","scripting","notifications","debugger","downloads"],"host_permissions":["<all_urls>"],"background":{"service_worker":"background.js"},"action":{"default_title":"Browsentic","default_popup":"popup.html"},"side_panel":{"default_path":"sidepanel.html"},"content_scripts":[{"matches":["*://*/*"],"js":["content-scripts/content.js"]}]}
@@ -5,9 +5,9 @@
5
5
  <meta name="color-scheme" content="dark">
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
7
  <title>Browsentic</title>
8
- <script type="module" crossorigin src="/chunks/popup-CfZfQ_Ko.js"></script>
8
+ <script type="module" crossorigin src="/chunks/popup-oBlyX-3-.js"></script>
9
9
  <link rel="modulepreload" crossorigin href="/chunks/rolldown-runtime-Bh1tDfsg.js">
10
- <link rel="modulepreload" crossorigin href="/chunks/globals-Clc0lvKQ.js">
10
+ <link rel="modulepreload" crossorigin href="/chunks/globals-B0U7yIPs.js">
11
11
  <link rel="stylesheet" crossorigin href="/assets/globals-DfMsVuFd.css">
12
12
  </head>
13
13
  <body>
@@ -5,9 +5,9 @@
5
5
  <meta name="color-scheme" content="dark">
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
7
  <title>Browsentic Chat</title>
8
- <script type="module" crossorigin src="/chunks/sidepanel-DkhdrzCA.js"></script>
8
+ <script type="module" crossorigin src="/chunks/sidepanel-BypynwRp.js"></script>
9
9
  <link rel="modulepreload" crossorigin href="/chunks/rolldown-runtime-Bh1tDfsg.js">
10
- <link rel="modulepreload" crossorigin href="/chunks/globals-Clc0lvKQ.js">
10
+ <link rel="modulepreload" crossorigin href="/chunks/globals-B0U7yIPs.js">
11
11
  <link rel="stylesheet" crossorigin href="/assets/globals-DfMsVuFd.css">
12
12
  </head>
13
13
  <body>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browsentic",
3
- "version": "0.4.11",
3
+ "version": "0.4.12",
4
4
  "description": "Hand your real, logged-in browser to the AI agent you already run. Installs the browser extension, runs the local daemon, and speaks MCP.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -15,6 +15,8 @@ Each entry also carries its `role`, its `state` and the `region` it lives in. Ch
15
15
 
16
16
  `page_getPageInfo { maxPerKind: 30 }` is the useful default. Drop to `maxPerKind: 1` when you only need the layout diagram and the URL.
17
17
 
18
+ When the snapshot carries a `siteTools` list, this site registers its own tools for agents through WebMCP — a structured alternative to its UI, offered by the site itself. Call `page_listSiteTools` for their schemas and prefer `page_callSiteTool` over a click-and-fill sequence wherever a listed tool covers the step: the site's own code handles the call, so there is no selector to break and no intermediate state to wait through. A call is gated like a form submit, because the site decides what it does. No `siteTools` in the snapshot means the site registers none, which is the common case — work with the ordinary tools and do not go looking.
19
+
18
20
  ## 2. Target by what the user can see
19
21
 
20
22
  ```