Home > Mobile >  Keep chrome open while a game is on fullscreen
Keep chrome open while a game is on fullscreen

Time:11-04

Maybe this question doesn't belong here but I didn't know where else to ask. Is it possible to have chrome open and overlap another fullscreen game. For example I am on gta 5 and at the right top corner there is a chrome tab pinned there. Is this possible ?

Here is an edited photo of what I am trying to achieve. Link

CodePudding user response:

This looks like something that AutoHotkey can do.

Try this script to toggle the AlwaysOnTop state of your chrome window before fullscreening your app:

;Alt T = Toggle AlwaysOnTop state of the active window
!t::WinSet, AlwaysOnTop, Toggle, A

Source from the AHK forums

If you want to change Alt T (!t) to be a different hotkey, take a look at the Hotkey section in the AHK documentation.

  • Related