2

I am looking for an add-on or a solution for Firefox which enables transparency on the whole Firefox window.

It would be best if the degree of transparency could be adjusted and there were hot keys to quickly enable or disable the add-on.

Any idea?

slhck
  • 223,558
  • 70
  • 607
  • 592
lamwaiman1988
  • 2,681
  • 6
  • 39
  • 55

2 Answers2

2

PowerMenu: http://www.abstractpath.com/powermenu/ would do what you would like.

Here are some alternatives as well: http://alternativeto.net/software/powermenu/

Howard Lince III
  • 376
  • 1
  • 2
  • 8
  • PowerMenu contains a trojan - what a `safe` free stuff! http://www.virustotal.com/file-scan/report.html?id=175704ce1af2ab87d46f0070f540f753ec836b29835858b36124ba87eab357ad-1317325848 – Nam G VU Oct 07 '11 at 07:00
  • 1 of 41 scanners sounds like a false positive to me. – Howard Lince III Oct 07 '11 at 13:34
  • I didn't check for previous versions but latest Firefox (v34) can't be on top with PowerMenu. – trante Oct 21 '14 at 16:22
2

The accepted PowerMenu application didn't work for me. However, How-To Geek has the great solution via AutoHotkey. Just install AutoHotkey and save this script as a .ahk and execute it. You can then control the transparency of any Windows by holding the Win/Meta key and scrolling the mouse wheel. This is of course, adjustable by editing the script. This worked on every window I tried under Windows 7 x64.

; changing window transparencies
#WheelUp::  ; Increments transparency up by 3.375% (with wrap-around)
    DetectHiddenWindows, on
   WinGet, curtrans, Transparent, A
    if ! curtrans
        curtrans = 255
    newtrans := curtrans + 8
    if newtrans > 0
    {
        WinSet, Transparent, %newtrans%, A
    }
    else
    {
        WinSet, Transparent, OFF, A
        WinSet, Transparent, 255, A
    }
return

#WheelDown::  ; Increments transparency down by 3.375% (with wrap-around)
    DetectHiddenWindows, on
    WinGet, curtrans, Transparent, A
    if ! curtrans
        curtrans = 255
    newtrans := curtrans - 8
    if newtrans > 0
    {
        WinSet, Transparent, %newtrans%, A
    }
    ;else
    ;{
    ;    WinSet, Transparent, 255, A
    ;    WinSet, Transparent, OFF, A
    ;}
return

#o::  ; Reset Transparency Settings
    WinSet, Transparent, 255, A
    WinSet, Transparent, OFF, A
return

#g::  ; Press Win+G to show the current settings of the window under the mouse.
    MouseGetPos,,, MouseWin
    WinGet, Transparent, Transparent, ahk_id %MouseWin%
    ToolTip Translucency:`t%Transparent%`n
    Sleep 2000
    ToolTip
return

Source via howtogeek.com

ssh2ksh
  • 121
  • 3