Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ To move buttons around, press <kbd>CTRL</kbd>+<kbd>;</kbd> in Stadia and layout
Keep in mind that once you change the position of a button in layout mode, that button will no longer move relative to the window border when resizing your browser, so you must maintain the same browser window size for the layout to look consistent. If you create a layout, then shrink your browser, it's possible to lose buttons outside the visible area! To reset the layout, press the `Reset` button in the TouchStadia configuration.

## Testing
TouchStadia also has manifest permissions to run on [html5gamepad.com](https://html5gamepad.com), where you can test the input of the controller with visual feedback! This is useful if you'd rather not wait for a game to open!
TouchStadia also has manifest permissions to run on [gamepad-tester.com](https://gamepad-tester.com), where you can test the input of the controller with visual feedback! This is useful if you'd rather not wait for a game to open!

## Pull requests
All pull requests are welcome! Please feel free to improve TouchStadia as you see fit, there's many improvements to be made! If you're thinking of making a change to https://touchstadia.ca, please make a pull request in the [website repo](https://github.com/ihatecsv/TouchStadia-website) instead!
Expand Down
4 changes: 2 additions & 2 deletions background.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ chrome.runtime.onInstalled.addListener(function() {
pageUrl: {hostEquals: "stadia.google.com"},
}),
new chrome.declarativeContent.PageStateMatcher({
pageUrl: {hostEquals: "html5gamepad.com"},
pageUrl: {hostEquals: "gamepad-tester.com"},
}),
],
actions: [new chrome.declarativeContent.ShowPageAction()]
Expand Down Expand Up @@ -47,4 +47,4 @@ chrome.runtime.onInstalled.addListener(function() {
console.log("TouchStadia: Set start params!");
});
});
});
});
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
{
"matches": [
"https://stadia.google.com/*",
"https://html5gamepad.com/*"
"https://gamepad-tester.com/*"
],
"js": ["touchstadia.js"],
"run_at": "document_start"
Expand All @@ -40,4 +40,4 @@
"res/*.json"
],
"manifest_version": 2
}
}