chrome-types 0.1.357 → 0.1.359

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.
Files changed (3) hide show
  1. package/_all.d.ts +29 -7
  2. package/index.d.ts +29 -7
  3. package/package.json +2 -2
package/_all.d.ts CHANGED
@@ -14,8 +14,8 @@
14
14
  * limitations under the License.
15
15
  */
16
16
 
17
- // Generated on Fri Jun 27 2025 22:33:50 GMT+0000 (Coordinated Universal Time)
18
- // Built at 9cdecf0f71c6df902469a9015c8cff2e28f4ab27
17
+ // Generated on Wed Jul 02 2025 22:34:12 GMT+0000 (Coordinated Universal Time)
18
+ // Built at 4fbe89cae1064fcfffcaca4edf08bff8c163cb53
19
19
 
20
20
  // Includes all types, including MV2 + Platform Apps APIs.
21
21
 
@@ -12349,7 +12349,7 @@ declare namespace chrome {
12349
12349
  }
12350
12350
 
12351
12351
  /**
12352
- * Use the `chrome.enterprise.login` API to exit user sessions. Note: This API is only available to extensions installed by enterprise policy in ChromeOS managed sessions.
12352
+ * Use the `chrome.enterprise.login` API to exit Managed Guest sessions. Note: This API is only available to extensions installed by enterprise policy in ChromeOS Managed Guest sessions.
12353
12353
  *
12354
12354
  * @since Pending
12355
12355
  * @chrome-permission enterprise.login
@@ -22176,10 +22176,6 @@ declare namespace chrome {
22176
22176
  * The omnibox API allows you to register a keyword with Google Chrome's address bar, which is also known as the omnibox.
22177
22177
  *
22178
22178
  * @chrome-manifest omnibox
22179
- * @chrome-platform chromeos
22180
- * @chrome-platform linux
22181
- * @chrome-platform mac
22182
- * @chrome-platform win
22183
22179
  */
22184
22180
  export namespace omnibox {
22185
22181
 
@@ -24072,6 +24068,32 @@ declare namespace chrome {
24072
24068
  ): void;
24073
24069
  }
24074
24070
 
24071
+ /**
24072
+ * `protocol_handlers` manifest key defintion. Protocol Handlers allow developers to let extensions register Custom Handlers for URL's schemes unknown to the Browser. This manifest key provides a similar behavior than the Web API implementing the Custom Handlers section of the HTML specification. https://html.spec.whatwg.org/#custom-handlers
24073
+ *
24074
+ * @since Pending
24075
+ */
24076
+ export namespace protocolHandlers {
24077
+
24078
+ export interface ProtocolHandler {
24079
+
24080
+ /**
24081
+ * A string definition of the protocol to handle.
24082
+ */
24083
+ protocol: string;
24084
+
24085
+ /**
24086
+ * A string representation of the protocol handlers, displayed to the user when prompting for permissions.
24087
+ */
24088
+ name: string;
24089
+
24090
+ /**
24091
+ * A string representing the URL of the protocol handler (must be a localizable property).
24092
+ */
24093
+ uriTemplate: string;
24094
+ }
24095
+ }
24096
+
24075
24097
  /**
24076
24098
  * Use the `chrome.proxy` API to manage Chrome's proxy settings. This API relies on the [ChromeSetting prototype of the type API](https://developer.chrome.com/docs/extensions/reference/api/types#type-ChromeSetting) for getting and setting the proxy configuration.
24077
24099
  *
package/index.d.ts CHANGED
@@ -14,8 +14,8 @@
14
14
  * limitations under the License.
15
15
  */
16
16
 
17
- // Generated on Fri Jun 27 2025 22:33:45 GMT+0000 (Coordinated Universal Time)
18
- // Built at 9cdecf0f71c6df902469a9015c8cff2e28f4ab27
17
+ // Generated on Wed Jul 02 2025 22:34:07 GMT+0000 (Coordinated Universal Time)
18
+ // Built at 4fbe89cae1064fcfffcaca4edf08bff8c163cb53
19
19
 
20
20
  // Includes MV3+ APIs only.
21
21
 
@@ -8481,7 +8481,7 @@ declare namespace chrome {
8481
8481
  }
8482
8482
 
8483
8483
  /**
8484
- * Use the `chrome.enterprise.login` API to exit user sessions. Note: This API is only available to extensions installed by enterprise policy in ChromeOS managed sessions.
8484
+ * Use the `chrome.enterprise.login` API to exit Managed Guest sessions. Note: This API is only available to extensions installed by enterprise policy in ChromeOS Managed Guest sessions.
8485
8485
  *
8486
8486
  * @since Pending
8487
8487
  * @chrome-permission enterprise.login
@@ -17205,10 +17205,6 @@ declare namespace chrome {
17205
17205
  * The omnibox API allows you to register a keyword with Google Chrome's address bar, which is also known as the omnibox.
17206
17206
  *
17207
17207
  * @chrome-manifest omnibox
17208
- * @chrome-platform chromeos
17209
- * @chrome-platform linux
17210
- * @chrome-platform mac
17211
- * @chrome-platform win
17212
17208
  */
17213
17209
  export namespace omnibox {
17214
17210
 
@@ -18821,6 +18817,32 @@ declare namespace chrome {
18821
18817
  ): void;
18822
18818
  }
18823
18819
 
18820
+ /**
18821
+ * `protocol_handlers` manifest key defintion. Protocol Handlers allow developers to let extensions register Custom Handlers for URL's schemes unknown to the Browser. This manifest key provides a similar behavior than the Web API implementing the Custom Handlers section of the HTML specification. https://html.spec.whatwg.org/#custom-handlers
18822
+ *
18823
+ * @since Pending
18824
+ */
18825
+ export namespace protocolHandlers {
18826
+
18827
+ export interface ProtocolHandler {
18828
+
18829
+ /**
18830
+ * A string definition of the protocol to handle.
18831
+ */
18832
+ protocol: string;
18833
+
18834
+ /**
18835
+ * A string representation of the protocol handlers, displayed to the user when prompting for permissions.
18836
+ */
18837
+ name: string;
18838
+
18839
+ /**
18840
+ * A string representing the URL of the protocol handler (must be a localizable property).
18841
+ */
18842
+ uriTemplate: string;
18843
+ }
18844
+ }
18845
+
18824
18846
  /**
18825
18847
  * Use the `chrome.proxy` API to manage Chrome's proxy settings. This API relies on the [ChromeSetting prototype of the type API](https://developer.chrome.com/docs/extensions/reference/api/types#type-ChromeSetting) for getting and setting the proxy configuration.
18826
18848
  *
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "type": "module",
6
6
  "name": "chrome-types",
7
7
  "config": {
8
- "build-hash": "d9222069473b6b63"
8
+ "build-hash": "73af57e6065b726c"
9
9
  },
10
10
  "repository": {
11
11
  "type": "git",
@@ -16,5 +16,5 @@
16
16
  "url": "https://github.com/GoogleChrome/chrome-types/issues"
17
17
  },
18
18
  "homepage": "https://github.com/GoogleChrome/chrome-types",
19
- "version": "0.1.357"
19
+ "version": "0.1.359"
20
20
  }