Sunday, April 17, 2011

Firefox Tip: USB iPad Keyboards, Tab Switching, and CyanogenMod Nightlies

Connect USB Peripherals to the iPad with the Camera Connection Kit:

Cycle Through Firefox Tabs with One Keypress:

 Download AutoHotkey and insert this script: 

 ----------------------------------------------------------------------------------------------------

#IfWinActive ahk_class MozillaUIWindowClass ; Lazy Tab (Firefox 3.6.x)
^k::^+t ; turns search into undo close tab
Alt::
if winc_presses 0
{
winc_presses += 1
return
}
winc_presses = 1
SetTimer, KeyWinC, 300
return
KeyWinC:
SetTimer, KeyWinC, off
if winc_presses = 1
{
Send ^{TAB}
}
else if winc_presses = 2
{
Send ^+{TAB}
}
else if winc_presses 2
{
}
winc_presses = 0
return 

---------------------------------------------------------------------------------------------------------------

#IfWinActive ahk_class MozillaWindowClass ; Lazy Tab (Firefox 4.0*)
^k::^+t ; turns search into undo close tab
Alt::
if wind_presses 0
{
wind_presses += 1
return
}
wind_presses = 1
SetTimer, KeyWinD, 300
return
KeyWinD:
SetTimer, KeyWinD, off
if wind_presses = 1
{
Send ^{TAB}
}
else if wind_presses = 2
{
Send ^+{TAB}
}
else if wind_presses 2
{
}
wind_presses = 0
return 

Keep Track of CyanogenMod Nightly Builds

 For those who are Cyanogen mod fans and who like to upgrade to the latest Nightly version, here is a great web site that searches the GITHUB commits and creates a webpage for each device with a summary of all changes applied to a certain nightly version.



Use the New Chrome Icon Before it Reaches the Stable Channel:

If you like the new chrome icon and can't wait for it to trickle down from the dev version, here is a link. It's a PNG so you can use it to convert to any format you may need.

1 comment:

  1. Tired of looking for Firefox for iPad Browser?
    Visit http://www.FirefoxiPad.com today for all you want to know about the Firefox browser for you tablet device.

    ReplyDelete