-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
47 lines (47 loc) · 949 Bytes
/
manifest.json
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
39
40
41
42
43
44
45
46
47
{
"manifest_version": 3,
"name": "github-history",
"version": "1.0",
"description": "A chrome extension to track user behaviors(visiting repo, issue, pr, code snippet, discussions) in github. ",
"commands": {
"history-modal": {
"suggested_key": {
"default": "Ctrl+H",
"mac": "Command+H"
},
"description": "Open command menu"
}
},
"icons": {
"16": "public/logo.png",
"32": "public/logo.png",
"48": "public/logo.png",
"128": "public/logo.png"
},
"permissions": [
"storage",
"background",
"history",
"tabs",
"activeTab",
"scripting"
],
"action": {},
"background": {
"service_worker": "dist/history-background.mjs"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"public/history.css"
],
"js": [
"dist/history.mjs"
],
"run_at": "document_end"
}
]
}