forked from Revadike/SteamWebIntegration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.chromium.json
63 lines (63 loc) · 1.4 KB
/
manifest.chromium.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "Steam Web Integration",
"description": "Integrate your personal Steam information on the web, at your convenience!.",
"homepage_url": "https://github.com/revadike/steamwebintegration",
"version": "2.3.0",
"author": "Revadike",
"manifest_version": 3,
"action": {
"default_popup": "popup.html",
"default_title": "Steam Web Integration",
"default_icon": "images/icon256.png"
},
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png",
"256": "images/icon256.png"
},
"content_scripts": [
{
"run_at": "document_start",
"js": [
"scripts/content.js"
],
"css": [
"css/content.css",
"css/fontawesome.min.css",
"css/solid.min.css"
],
"matches": [
"https://*/*",
"http://*/*"
]
}
],
"background": {
"service_worker": "scripts/background.js"
},
"web_accessible_resources": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"resources": [
"webfonts/fa-solid-900.woff2",
"webfonts/fa-solid-900.ttf",
"css/content.css",
"css/fontawesome.min.css",
"css/solid.min.css"
]
}
],
"permissions": [
"storage",
"unlimitedStorage",
"contextMenus"
],
"host_permissions": [
"https://store.steampowered.com/*"
]
}