alenros·vor 6 Jahren·discussInstead of opening multiple browsers, open new windows in private (incognito) mode and connect to the same game.
alenros·vor 6 Jahren·discussWhat I usually do when testing new games is opening an incognito browser window and joining my own game.
alenros·vor 9 Jahren·discussYes - if you have one of these extensions installed. Tampermonkey even has an application for Android.
alenros·vor 9 Jahren·discussWrote down this Tampermonkey\Greasemonkey script that would do the job of automatically redirecting you to the original content. can also be obtained from [0]// ==UserScript== // @name Un-AMP // @namespace http://tampermonkey.net/ // @version 0.1 // @description avoids google AMP links and navigates to the original content // @author Alenros // @match https://www.google.co.il/amp/* // @match https://www.google.com/amp/* // @grant none // ==/UserScript==window.location.href=document.getElementsByClassName("amp-canurl")[0].textContent;---------------[0]https://github.com/alenros/Un-AMP