-
Notifications
You must be signed in to change notification settings - Fork 11
/
manifest.json
52 lines (52 loc) · 1.24 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
{
"name": "ControlStadia",
"version": "0.0.3",
"description": "ControlStadia allows arbitrary mapping of input devices to a \"standard\" virtual input controller which works with Stadia!",
"background": {
"scripts": ["background.js"],
"persistent": false
},
"page_action": {
"default_popup": "settings.html",
"default_icon": {
"16": "img/cs-16.png",
"32": "img/cs-32.png",
"48": "img/cs-48.png",
"128": "img/cs-128.png"
}
},
"content_scripts": [
{
"matches": [
"https://gamepad-tester.com/*",
"https://gamepad.e7d.io/*",
"https://cloud.boosteroid.com/*",
"https://www.xbox.com/*",
"https://play.geforcenow.com/*",
"https://shadow.tech/*",
"https://www.paperspace.com/*",
"https://parsec.app/*",
"https://www.nvidia.com/*",
"https://playkey.net/*",
"https://www.netboom.com/*",
"https://www.blacknut.com/*",
"https://www.furioos.com/*",
"https://luna.amazon.com/*",
"https://stadia.google.com/*"
],
"js": ["controlstadia.js"],
"run_at": "document_start"
}
],
"permissions": [
"storage",
"declarativeContent"
],
"icons": {
"16": "img/cs-16.png",
"32": "img/cs-32.png",
"48": "img/cs-48.png",
"128": "img/cs-128.png"
},
"manifest_version": 2
}