-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
44 lines (44 loc) · 996 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
{
"name": "Stack Overflow Copier",
"description": "An extension to make developer's life a little bit faster!",
"author": "Max Shulov",
"version": "2.0",
"manifest_version": 3,
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "/assets/fav16.png",
"32": "/assets/fav32.png",
"48": "/assets/fav48.png",
"64": "/assets/fav64.png",
"128": "/assets/favi128.png",
"256": "/assets/favi256.png"
}
},
"content_scripts": [
{
"matches": [
"*://*.stackoverflow.com/*"
],
"css": [
"lib/jquery.toast.min.css"
],
"js": [
"lib/jquery-3.6.0.min.js",
"lib/jquery.toast.min.js",
"content.js"
]
}
],
"permissions": [
"storage"
],
"icons": {
"16": "/assets/fav16.png",
"32": "/assets/fav32.png",
"48": "/assets/fav48.png",
"64": "/assets/fav64.png",
"128": "/assets/favi128.png",
"256": "/assets/favi256.png"
}
}