@schemastore/chrome-manifest 1.0.1 → 1.0.2
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/README.md +1 -1
- package/index.d.ts +1 -86
- package/package.json +1 -1
package/README.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -94,91 +94,6 @@ export type Permissions = (
|
|
|
94
94
|
)
|
|
95
95
|
| string
|
|
96
96
|
)[];
|
|
97
|
-
/**
|
|
98
|
-
* Permissions help to limit damage if your extension or app is compromised by malware. Some permissions are also displayed to users before installation, as detailed in Permission Warnings.
|
|
99
|
-
*/
|
|
100
|
-
export type Permissions1 = (
|
|
101
|
-
| (
|
|
102
|
-
| 'accessibilityFeatures.modify'
|
|
103
|
-
| 'accessibilityFeatures.read'
|
|
104
|
-
| 'activeTab'
|
|
105
|
-
| 'alarms'
|
|
106
|
-
| 'audio'
|
|
107
|
-
| 'background'
|
|
108
|
-
| 'bookmarks'
|
|
109
|
-
| 'browsingData'
|
|
110
|
-
| 'certificateProvider'
|
|
111
|
-
| 'clipboardRead'
|
|
112
|
-
| 'clipboardWrite'
|
|
113
|
-
| 'contentSettings'
|
|
114
|
-
| 'contextMenus'
|
|
115
|
-
| 'cookies'
|
|
116
|
-
| 'debugger'
|
|
117
|
-
| 'declarativeContent'
|
|
118
|
-
| 'declarativeNetRequest'
|
|
119
|
-
| 'declarativeNetRequestWithHostAccess'
|
|
120
|
-
| 'declarativeNetRequestFeedback'
|
|
121
|
-
| 'dns'
|
|
122
|
-
| 'desktopCapture'
|
|
123
|
-
| 'documentScan'
|
|
124
|
-
| 'downloads'
|
|
125
|
-
| 'downloads.open'
|
|
126
|
-
| 'downloads.ui'
|
|
127
|
-
| 'enterprise.deviceAttributes'
|
|
128
|
-
| 'enterprise.hardwarePlatform'
|
|
129
|
-
| 'enterprise.networkingAttributes'
|
|
130
|
-
| 'enterprise.platformKeys'
|
|
131
|
-
| 'favicon'
|
|
132
|
-
| 'fileBrowserHandler'
|
|
133
|
-
| 'fileSystemProvider'
|
|
134
|
-
| 'fontSettings'
|
|
135
|
-
| 'gcm'
|
|
136
|
-
| 'geolocation'
|
|
137
|
-
| 'history'
|
|
138
|
-
| 'identity'
|
|
139
|
-
| 'identity.email'
|
|
140
|
-
| 'idle'
|
|
141
|
-
| 'loginState'
|
|
142
|
-
| 'management'
|
|
143
|
-
| 'nativeMessaging'
|
|
144
|
-
| 'notifications'
|
|
145
|
-
| 'offscreen'
|
|
146
|
-
| 'pageCapture'
|
|
147
|
-
| 'platformKeys'
|
|
148
|
-
| 'power'
|
|
149
|
-
| 'printerProvider'
|
|
150
|
-
| 'printing'
|
|
151
|
-
| 'printingMetrics'
|
|
152
|
-
| 'privacy'
|
|
153
|
-
| 'processes'
|
|
154
|
-
| 'proxy'
|
|
155
|
-
| 'readingList'
|
|
156
|
-
| 'runtime'
|
|
157
|
-
| 'scripting'
|
|
158
|
-
| 'search'
|
|
159
|
-
| 'sessions'
|
|
160
|
-
| 'sidePanel'
|
|
161
|
-
| 'storage'
|
|
162
|
-
| 'system.cpu'
|
|
163
|
-
| 'system.display'
|
|
164
|
-
| 'system.memory'
|
|
165
|
-
| 'system.storage'
|
|
166
|
-
| 'tabCapture'
|
|
167
|
-
| 'tabGroups'
|
|
168
|
-
| 'tabs'
|
|
169
|
-
| 'topSites'
|
|
170
|
-
| 'tts'
|
|
171
|
-
| 'ttsEngine'
|
|
172
|
-
| 'unlimitedStorage'
|
|
173
|
-
| 'vpnProvider'
|
|
174
|
-
| 'wallpaper'
|
|
175
|
-
| 'webAuthenticationProxy'
|
|
176
|
-
| 'webNavigation'
|
|
177
|
-
| 'webRequest'
|
|
178
|
-
| 'webRequestBlocking'
|
|
179
|
-
)
|
|
180
|
-
| string
|
|
181
|
-
)[];
|
|
182
97
|
|
|
183
98
|
export interface JSONSchemaForGoogleChromeExtensionManifestFiles {
|
|
184
99
|
/**
|
|
@@ -492,7 +407,7 @@ export interface JSONSchemaForGoogleChromeExtensionManifestFiles {
|
|
|
492
407
|
open_in_tab?: boolean;
|
|
493
408
|
[k: string]: unknown | undefined;
|
|
494
409
|
};
|
|
495
|
-
permissions?:
|
|
410
|
+
permissions?: Permissions;
|
|
496
411
|
/**
|
|
497
412
|
* Technologies required by the app or extension. Hosting sites such as the Chrome Web Store may use this list to dissuade users from installing apps or extensions that will not work on their computer.
|
|
498
413
|
*/
|
package/package.json
CHANGED