@types/chrome 0.1.22 → 0.1.23
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.
- chrome/README.md +1 -1
- chrome/index.d.ts +12 -1
- chrome/package.json +2 -2
chrome/README.md
CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for chrome (https://developer.chrome.com/
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chrome.
|
9
9
|
|
10
10
|
### Additional Details
|
11
|
-
* Last updated:
|
11
|
+
* Last updated: Sat, 11 Oct 2025 05:34:11 GMT
|
12
12
|
* Dependencies: [@types/filesystem](https://npmjs.com/package/@types/filesystem), [@types/har-format](https://npmjs.com/package/@types/har-format)
|
13
13
|
|
14
14
|
# Credits
|
chrome/index.d.ts
CHANGED
@@ -9296,7 +9296,18 @@ declare namespace chrome {
|
|
9296
9296
|
optional_permissions?: ManifestOptionalPermissions[] | undefined;
|
9297
9297
|
optional_host_permissions?: string[] | undefined;
|
9298
9298
|
permissions?: ManifestPermissions[] | undefined;
|
9299
|
-
web_accessible_resources?:
|
9299
|
+
web_accessible_resources?:
|
9300
|
+
| Array<
|
9301
|
+
& {
|
9302
|
+
resources: string[];
|
9303
|
+
use_dynamic_url?: boolean | undefined;
|
9304
|
+
}
|
9305
|
+
& (
|
9306
|
+
| { extension_ids: string[]; matches?: string[] | undefined }
|
9307
|
+
| { matches: string[]; extension_ids?: string[] | undefined }
|
9308
|
+
)
|
9309
|
+
>
|
9310
|
+
| undefined;
|
9300
9311
|
}
|
9301
9312
|
|
9302
9313
|
export type Manifest = ManifestV2 | ManifestV3;
|
chrome/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/chrome",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.23",
|
4
4
|
"description": "TypeScript definitions for chrome",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chrome",
|
6
6
|
"license": "MIT",
|
@@ -94,6 +94,6 @@
|
|
94
94
|
"@types/har-format": "*"
|
95
95
|
},
|
96
96
|
"peerDependencies": {},
|
97
|
-
"typesPublisherContentHash": "
|
97
|
+
"typesPublisherContentHash": "aeba34b4b0487d782a1e868033d51b9b8e2e4509e7973ea314537754c5337132",
|
98
98
|
"typeScriptVersion": "5.2"
|
99
99
|
}
|