From 892543d2f7d8898d19796dc5413c08ad65904a60 Mon Sep 17 00:00:00 2001 From: FlaminSarge Date: Wed, 28 Apr 2021 04:42:57 -0700 Subject: [PATCH 1/3] Move html5gamepad.com to gamepad-tester.com The former redirects to the latter currently. --- manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +} From ce93132766105354a2521ca0bdc73f82729b5d5f Mon Sep 17 00:00:00 2001 From: FlaminSarge Date: Wed, 28 Apr 2021 04:45:36 -0700 Subject: [PATCH 2/3] Update README for gamepad-tester --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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! From f1e6328098d2d27d477dcb9bfb97063c63f09ef2 Mon Sep 17 00:00:00 2001 From: FlaminSarge Date: Wed, 28 Apr 2021 04:47:18 -0700 Subject: [PATCH 3/3] Update background.js for gamepad-tester --- background.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +});