-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (29 loc) · 815 Bytes
/
manifest.json
File metadata and controls
32 lines (29 loc) · 815 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
{
"manifest_version": 3,
"name": "DFK assistant",
"version": "1.4",
"action": {
"default_icon": {
"16": "./img/128.png",
"48": "./img/128.png",
"128": "./img/128.png"
}
},
"icons": {
"16": "./img/128.png",
"48": "./img/128.png",
"128": "./img/128.png"
},
"description": "The DFK Assistant is a tool designed for DFK players, primarily aimed at enhancing the efficiency of players during gameplay.",
"content_scripts": [
{
"matches": ["https://game.defikingdoms.com/","https://beta.defikingdoms.com/"],
"js": ["./js/entrance.js"],
"css": ["./styles/styles.css"],
"run_at": "document_end"
}
],
"permissions": [
"storage"
]
}