diff --git a/README.md b/README.md index 59f23f1..d4407f8 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ To move buttons around, press CTRL+; 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! diff --git a/background.js b/background.js index 0f39d8d..8db8c47 100644 --- a/background.js +++ b/background.js @@ -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()] @@ -47,4 +47,4 @@ chrome.runtime.onInstalled.addListener(function() { console.log("TouchStadia: Set start params!"); }); }); -}); \ No newline at end of file +}); diff --git a/manifest.json b/manifest.json index 4511d1a..e6e1e18 100644 --- a/manifest.json +++ b/manifest.json @@ -19,7 +19,7 @@ { "matches": [ "https://stadia.google.com/*", - "https://html5gamepad.com/*" + "https://gamepad-tester.com/*" ], "js": ["touchstadia.js"], "run_at": "document_start" @@ -40,4 +40,4 @@ "res/*.json" ], "manifest_version": 2 -} \ No newline at end of file +}