-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfirefox.manifest.json
42 lines (42 loc) · 1.09 KB
/
firefox.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
{
"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": 2,
"background": {
"scripts": ["out/background.bundle.js"]
},
"content_scripts": [
{
"matches": [
"https://store.steampowered.com/*",
"https://steamcommunity.com/id/*/games*",
"https://steamcommunity.com/profiles/*/games*"
],
"run_at": "document_idle",
"js": ["out/pages.bundle.js"],
"css": ["out/pages.bundle.css"]
}
],
"permissions": [
"storage",
"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"
},
"browser_action": {
"default_popup": "src/settings/settings.html"
},
"browser_specific_settings": {
"gecko": {
"id": "{d46a197b-8fed-4352-a4be-5f89f977344f}"
}
}
}