forked from john-tettis/DAT_Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
38 lines (38 loc) · 913 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
{
"manifest_version": 3,
"name": "DAT Extension",
"version": "1.0",
"description": "Skip tasks and copy response code easier. Automatically sort tasks by pay.",
"permissions": ["activeTab","storage"],
"action": {
"default_popup": "./html/popup.html",
"default_icon": {
"128": "./Images/icon128.png"
}
},
"background": {
},
"content_scripts": [
{
"matches": ["https://app.dataannotation.tech/*"],
"js": [
"./scripts/darkMode.js",
"./scripts/stopWatchOverlay.js"
]
},
{
"matches": ["https://app.dataannotation.tech/workers/tasks/*"],
"js": [
"./scripts/skipCommand.js",
"./scripts/codeCopy.js"
]
},
{
"matches": ["https://app.dataannotation.tech/workers/projects"],
"js": [
"./scripts/descendingFilter.js",
"./scripts/colorCodeProjects.js"
]
}
]
}