-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmanifest.json
More file actions
43 lines (43 loc) · 894 Bytes
/
manifest.json
File metadata and controls
43 lines (43 loc) · 894 Bytes
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
{
"name": "TouchStadia",
"version": "0.0.25",
"description": "TouchStadia is a Chrome Extension which adds on-screen joystick control to Stadia for touchscreen devices!",
"background": {
"scripts": ["background.js"],
"persistent": false
},
"page_action": {
"default_popup": "settings.html",
"default_icon": {
"16": "img/ts-16.png",
"32": "img/ts-32.png",
"48": "img/ts-48.png",
"128": "img/ts-128.png"
}
},
"content_scripts": [
{
"matches": [
"https://stadia.google.com/*",
"https://html5gamepad.com/*"
],
"js": ["touchstadia.js"],
"run_at": "document_start"
}
],
"permissions": [
"storage",
"declarativeContent"
],
"icons": {
"16": "img/ts-16.png",
"32": "img/ts-32.png",
"48": "img/ts-48.png",
"128": "img/ts-128.png"
},
"web_accessible_resources": [
"img/controls/*.svg",
"res/*.json"
],
"manifest_version": 2
}