chrome-types 0.1.357 → 0.1.358
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.
- package/_all.d.ts +28 -2
- package/index.d.ts +28 -2
- 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
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Mon Jun 30 2025 22:33:56 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at f16e1ddc09c516addedf6d80561d468136e2c4a2
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -24072,6 +24072,32 @@ declare namespace chrome {
|
|
|
24072
24072
|
): void;
|
|
24073
24073
|
}
|
|
24074
24074
|
|
|
24075
|
+
/**
|
|
24076
|
+
* `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
|
|
24077
|
+
*
|
|
24078
|
+
* @since Pending
|
|
24079
|
+
*/
|
|
24080
|
+
export namespace protocolHandlers {
|
|
24081
|
+
|
|
24082
|
+
export interface ProtocolHandler {
|
|
24083
|
+
|
|
24084
|
+
/**
|
|
24085
|
+
* A string definition of the protocol to handle.
|
|
24086
|
+
*/
|
|
24087
|
+
protocol: string;
|
|
24088
|
+
|
|
24089
|
+
/**
|
|
24090
|
+
* A string representation of the protocol handlers, displayed to the user when prompting for permissions.
|
|
24091
|
+
*/
|
|
24092
|
+
name: string;
|
|
24093
|
+
|
|
24094
|
+
/**
|
|
24095
|
+
* A string representing the URL of the protocol handler (must be a localizable property).
|
|
24096
|
+
*/
|
|
24097
|
+
uriTemplate: string;
|
|
24098
|
+
}
|
|
24099
|
+
}
|
|
24100
|
+
|
|
24075
24101
|
/**
|
|
24076
24102
|
* 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
24103
|
*
|
package/index.d.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
// Generated on
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Mon Jun 30 2025 22:33:51 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at f16e1ddc09c516addedf6d80561d468136e2c4a2
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -18821,6 +18821,32 @@ declare namespace chrome {
|
|
|
18821
18821
|
): void;
|
|
18822
18822
|
}
|
|
18823
18823
|
|
|
18824
|
+
/**
|
|
18825
|
+
* `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
|
|
18826
|
+
*
|
|
18827
|
+
* @since Pending
|
|
18828
|
+
*/
|
|
18829
|
+
export namespace protocolHandlers {
|
|
18830
|
+
|
|
18831
|
+
export interface ProtocolHandler {
|
|
18832
|
+
|
|
18833
|
+
/**
|
|
18834
|
+
* A string definition of the protocol to handle.
|
|
18835
|
+
*/
|
|
18836
|
+
protocol: string;
|
|
18837
|
+
|
|
18838
|
+
/**
|
|
18839
|
+
* A string representation of the protocol handlers, displayed to the user when prompting for permissions.
|
|
18840
|
+
*/
|
|
18841
|
+
name: string;
|
|
18842
|
+
|
|
18843
|
+
/**
|
|
18844
|
+
* A string representing the URL of the protocol handler (must be a localizable property).
|
|
18845
|
+
*/
|
|
18846
|
+
uriTemplate: string;
|
|
18847
|
+
}
|
|
18848
|
+
}
|
|
18849
|
+
|
|
18824
18850
|
/**
|
|
18825
18851
|
* 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
18852
|
*
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"type": "module",
|
|
6
6
|
"name": "chrome-types",
|
|
7
7
|
"config": {
|
|
8
|
-
"build-hash": "
|
|
8
|
+
"build-hash": "379ab1744f2bb5fd"
|
|
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.
|
|
19
|
+
"version": "0.1.358"
|
|
20
20
|
}
|