-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (33 loc) · 760 Bytes
/
manifest.json
File metadata and controls
33 lines (33 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"description": "Clear user data as needed.",
"icons": {
"128": "icon128.png",
"16": "icon16.png",
"48": "icon48.png"
},
"manifest_version": 2,
"minimum_chrome_version": "66",
"name": "Chrome Managed Data Cleanup",
"options_ui": {
"open_in_tab": true,
"page": "options.html"
},
"permissions": [
"browsingData",
"cookies",
"history",
"<all_urls>"
],
"short_name": "CMDC",
"storage": {
"managed_schema": "schema.json"
},
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "1.46"
}