|
1 | 1 |
|
2 | 2 |
|
| 3 | +## Roll protocol to r1619965 — _2026-04-24T05:20:53.000Z_ |
| 4 | +###### Diff: [`5d8fd1a...68fa403`](https://github.com/ChromeDevTools/devtools-protocol/compare/5d8fd1a...68fa403) |
| 5 | + |
| 6 | +```diff |
| 7 | +@@ domains/Extensions.pdl:15 @@ experimental domain Extensions |
| 8 | + managed |
| 9 | + |
| 10 | + # Runs an extension default action. |
| 11 | +- # Available if the client is connected using the --remote-debugging-pipe |
| 12 | +- # flag and the --enable-unsafe-extension-debugging flag is set. |
| 13 | + command triggerAction |
| 14 | + parameters |
| 15 | + # Extension id. |
| 16 | +@@ -26,9 +24,7 @@ experimental domain Extensions |
| 17 | + |
| 18 | + # Installs an unpacked extension from the filesystem similar to |
| 19 | + # --load-extension CLI flags. Returns extension ID once the extension |
| 20 | +- # has been installed. Available if the client is connected using the |
| 21 | +- # --remote-debugging-pipe flag and the --enable-unsafe-extension-debugging |
| 22 | +- # flag is set. |
| 23 | ++ # has been installed. |
| 24 | + command loadUnpacked |
| 25 | + parameters |
| 26 | + # Absolute file path. |
| 27 | +@@ -54,15 +50,11 @@ experimental domain Extensions |
| 28 | + boolean enabled |
| 29 | + |
| 30 | + # Gets a list of all unpacked extensions. |
| 31 | +- # Available if the client is connected using the --remote-debugging-pipe flag |
| 32 | +- # and the --enable-unsafe-extension-debugging flag is set. |
| 33 | + command getExtensions |
| 34 | + returns |
| 35 | + array of ExtensionInfo extensions |
| 36 | + |
| 37 | + # Uninstalls an unpacked extension (others not supported) from the profile. |
| 38 | +- # Available if the client is connected using the --remote-debugging-pipe flag |
| 39 | +- # and the --enable-unsafe-extension-debugging. |
| 40 | + command uninstall |
| 41 | + parameters |
| 42 | + # Extension id. |
| 43 | +diff --git a/pdl/domains/WebMCP.pdl b/pdl/domains/WebMCP.pdl |
| 44 | +index 4b3836a4..463107ab 100644 |
| 45 | +--- a/pdl/domains/WebMCP.pdl |
| 46 | ++++ b/pdl/domains/WebMCP.pdl |
| 47 | +@@ -15,6 +15,8 @@ experimental domain WebMCP |
| 48 | + properties |
| 49 | + # A hint indicating that the tool does not modify any state. |
| 50 | + optional boolean readOnly |
| 51 | ++ # A hint indicating that the tool output may contain untrusted content, ex: UGC, 3rd party data. |
| 52 | ++ optional boolean untrustedContent |
| 53 | + # If the declarative tool was declared with the autosubmit attribute. |
| 54 | + optional boolean autosubmit |
| 55 | +``` |
| 56 | + |
3 | 57 | ## Roll protocol to r1618660 — _2026-04-22T05:15:00.000Z_ |
4 | | -###### Diff: [`eed2b1b...a70071f`](https://github.com/ChromeDevTools/devtools-protocol/compare/eed2b1b...a70071f) |
| 58 | +###### Diff: [`eed2b1b...5d8fd1a`](https://github.com/ChromeDevTools/devtools-protocol/compare/eed2b1b...5d8fd1a) |
5 | 59 |
|
6 | 60 | ```diff |
7 | 61 | @@ domains/Page.pdl:1618 @@ domain Page |
@@ -42921,52 +42975,4 @@ index 4754f17c..8dad9c98 100644 |
42921 | 42975 |
|
42922 | 42976 | # CSS coverage information. |
42923 | 42977 | type RuleUsage extends object |
42924 | | -``` |
42925 | | - |
42926 | | -## Roll protocol to r1165014 — _2023-07-01T04:27:51.000Z_ |
42927 | | -###### Diff: [`f92e635...a96ac10`](https://github.com/ChromeDevTools/devtools-protocol/compare/f92e635...a96ac10) |
42928 | | - |
42929 | | -```diff |
42930 | | -@@ browser_protocol.pdl:719 @@ experimental domain Audits |
42931 | | - Page.FrameId frameId |
42932 | | - Network.LoaderId loaderId |
42933 | | - |
42934 | | -- type NavigatorUserAgentIssueDetails extends object |
42935 | | -+ deprecated type NavigatorUserAgentIssueDetails extends object |
42936 | | - properties |
42937 | | - string url |
42938 | | - optional SourceCodeLocation location |
42939 | | -@@ -737,6 +737,7 @@ experimental domain Audits |
42940 | | - FormLabelHasNeitherForNorNestedInput |
42941 | | - FormLabelForMatchesNonExistingIdError |
42942 | | - FormInputHasWrongButWellIntendedAutocompleteValueError |
42943 | | -+ ResponseWasBlockedByORB |
42944 | | - |
42945 | | - # Depending on the concrete errorType, different properties are set. |
42946 | | - type GenericIssueDetails extends object |
42947 | | -@@ -746,6 +747,7 @@ experimental domain Audits |
42948 | | - optional Page.FrameId frameId |
42949 | | - optional DOM.BackendNodeId violatingNodeId |
42950 | | - optional string violatingNodeAttribute |
42951 | | -+ optional AffectedRequest request |
42952 | | - |
42953 | | - # This issue tracks information needed to print a deprecation message. |
42954 | | - # https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/frame/third_party/blink/renderer/core/frame/deprecation/README.md |
42955 | | -@@ -884,6 +886,7 @@ experimental domain Audits |
42956 | | - CorsIssue |
42957 | | - AttributionReportingIssue |
42958 | | - QuirksModeIssue |
42959 | | -+ # Deprecated |
42960 | | - NavigatorUserAgentIssue |
42961 | | - GenericIssue |
42962 | | - DeprecationIssue |
42963 | | -@@ -908,7 +911,7 @@ experimental domain Audits |
42964 | | - optional CorsIssueDetails corsIssueDetails |
42965 | | - optional AttributionReportingIssueDetails attributionReportingIssueDetails |
42966 | | - optional QuirksModeIssueDetails quirksModeIssueDetails |
42967 | | -- optional NavigatorUserAgentIssueDetails navigatorUserAgentIssueDetails |
42968 | | -+ deprecated optional NavigatorUserAgentIssueDetails navigatorUserAgentIssueDetails |
42969 | | - optional GenericIssueDetails genericIssueDetails |
42970 | | - optional DeprecationIssueDetails deprecationIssueDetails |
42971 | | - optional ClientHintIssueDetails clientHintIssueDetails |
42972 | 42978 | ``` |
0 commit comments