-
Notifications
You must be signed in to change notification settings - Fork 5
/
chrome.manifest.json
39 lines (39 loc) · 1 KB
/
chrome.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
{
"name": "Show Great on Deck on Steam",
"description": "See what Games are verified for the Steam Deck and which Medal they have on ProtonDB in the Steam Store.",
"version": "1.5.0",
"manifest_version": 3,
"background": {
"service_worker": "out/background.bundle.js"
},
"content_scripts": [
{
"matches": [
"https://store.steampowered.com/*",
"https://steamcommunity.com/id/*/games*",
"https://steamcommunity.com/profiles/*/games*"
],
"run_at": "document_end",
"js": ["out/pages.bundle.js"],
"css": ["out/pages.bundle.css"]
}
],
"permissions": [
"storage"
],
"host_permissions": [
"https://store.steampowered.com/*",
"https://steamcommunity.com/*",
"https://www.protondb.com/app/*",
"https://steamdeckhq.com/*"
],
"icons": {
"16": "icon/icon16.png",
"32": "icon/icon32.png",
"48": "icon/icon48.png",
"128": "icon/icon128.png"
},
"action": {
"default_popup": "src/settings/settings.html"
}
}