-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
37 lines (37 loc) · 779 Bytes
/
Copy pathmanifest.json
File metadata and controls
37 lines (37 loc) · 779 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
{
"manifest_version": 3,
"name": "__MSG_extensionName__",
"version": "1.1.0",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"permissions": [
"tabs",
"storage"
],
"icons": {
"16": "assets/icons/icon_16.png",
"32": "assets/icons/icon_32.png",
"48": "assets/icons/icon_48.png",
"128": "assets/icons/icon_128.png"
},
"action" : {
"default_icon": {
"16": "assets/icons/icon_16.png"
},
"default_popup": "src/html/popup.html"
},
"background": {
"service_worker": "src/js/background.js"
},
"content_scripts": [
{
"matches": [
"https://steamcommunity.com/linkfilter/*"
],
"js": [
"src/js/steam.js"
],
"run_at" : "document_idle"
}
]
}