This repository has been archived by the owner on May 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathmanifest.json
64 lines (64 loc) · 2.29 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "Stadia+ Extension",
"short_name": "Stadia+",
"version": "2.5.8",
"author": "Malte Klüft (Mafrans)",
"description": "Extends Google's Stadia gaming platform with additional features, such as custom filters and in game network monitoring.",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAj4rm88698t+T5Pe5jWP8edM6wPBErxwCu0k3Ona/Xc3lt3NJpvW5dabUdcpP3MYBjMQ41V/iq4Q64rObL9csaruxP4Ex3S8SaxBc/sDBxAUjRdYebF76t+APSeTRDs0WiKJgjUoEGBlOtSqffVYO7wpLr/IWUn9z1PfkaV5LY5jrlHJ4o0HUOoVW5v2gTUZV143hdOXQgMH9IFf1MppMzg0m7AVq+8j7L7O5334T0tKzhb2sd9uHp74jv2jTWBK1ykkoDt4ST18ZC6zdXH0/4rI3cJ/r0YlganD6wfNvJTWJ3WMCrvR/7S//qBr9iNrD65BQDFln90JPEeBScjtd8wIDAQAB",
"permissions": [
"declarativeContent",
"storage",
"identity",
"https://stadiagamedb.com/data/gamedb.json",
"https://stadiaplus.dev/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval' http://localhost:8098; object-src 'self'",
"oauth2": {
"client_id": "401608975485-29rkti0stvi4odvnn6hlomkjs0lrtqbj.apps.googleusercontent.com",
"scopes": [
"https://stadiaplus.dev/auth/google",
"https://stadiaplus.dev/auth/google/callback"
]
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "dist/popup.html",
"default_icon": {
"16": "images/Stadia+16.png",
"32": "images/Stadia+32.png",
"48": "images/Stadia+48.png",
"128": "images/Stadia+128.png"
}
},
"icons": {
"16": "images/Stadia+16.png",
"32": "images/Stadia+32.png",
"48": "images/Stadia+48.png",
"128": "images/Stadia+128.png"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https://stadia.google.com/*"
],
"js": [
"dist/app.js"
]
}
],
"web_accessible_resources": [
"images/icons/stadiaplus.svg",
"images/icons/network-monitor.svg",
"images/icons/windowed.svg",
"images/icons/windowed_exit.svg",
"images/PlayButton.png",
"images/PlayButtonBackground.png"
],
"manifest_version": 2
}