-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
38 lines (38 loc) · 800 Bytes
/
Copy pathmanifest.json
File metadata and controls
38 lines (38 loc) · 800 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
34
35
36
37
38
{
"manifest_version": 3,
"name": "cookie-collector",
"description": "collect cookie in specify website",
"version": "1.0.0",
"homepage_url": "https://github.com/valuetodays/chrome-extension-cookie-collector",
"action": {
"default_popup": "hello.html",
"default_icon": "hello_extensions.png"
},
"host_permissions": [
"<all_urls>"
],
"permissions": [
"cookies",
"activeTab",
"tabs",
"webRequest",
"storage",
"background"
],
"background": {
"service_worker": "service_worker.js"
// ,"type": "module"
},
"options_ui": {
"page": "./options.html",
"open_in_tab": true
},
"commands": {
"_execute_action": {
"suggested_key": {
"windows": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
}
}
}
}