Categories
firefox html

PasswordMaker and FoxFilter

To make PWM not enter a password into the “Allow website” form from FoxFilter, you

  • Add a new account to PWM.
  • It needs to use chrome://foxfilter* to calculate generated password
  • Automatically populate should be unchecked
  • I also have a (perhaps unnecessary) autopopulation pattern chrome://foxfilter*,
  • Under Advanced Autopopulate you need field TextPassword, type text, value blank

I hope I never have to figure that out again. Probably better to just use LeechBlock for what I was trying to do anyway.

Categories
firefox vimperator

Bye bye flash, hello gnash

This afternoon I was finding my computer really bogged down. I was averaging 1.5 loads or so. After a bit of poking, I found the culprit (again), xulrunner. Killed it, was thinking Firefox was junk. Tried out midori and epiphany, they’re nice, but I can’t survive without vimperator anymore. Sad but true.

Then I realized that it’s probably less Firefox and more flash. Uninstalled flash and installed mozilla-plugin-gnash on Debian testing. Youtube was dead. Though I don’t like to admit it, this is a big problem. Did some more poking, found some “greasemonkey” scripts that are supposed to fix the problem etc, installed that, no dice. Then I went on a chat room and someone pointed me to

https://fedoraproject.org/wiki/Common_F13_bugs#gnash-youtube-broken

Basically says to kill all your cookies and block www.youtube.com from putting in cookies since there’s some kind of bug with that. Then I turned off greasemonkey by clicking on the icon, and the video was playing but no sound! So I finally uninstalled the greasemonkey scripts and greasemonkey itself, restarted, and voila!

So now when the fix the bug, then presumably it will get all screwed up again.

Categories
firefox vimperator

Firefox Instability Fix

I’ve been having fun with vimperator, but then my firefox on one of my (Debian) laptops became unstable. I’d rightclick on a field, and it would crash. I ran it from the commandline to see if there’s any error messages, it would just say Segmentation fault. I didn’t have time to get a tracer and see where it’s crashing, and I did need to to work again quickly. I tried aptitude reinstall firefox, but that doesn’t seem to do anything useful, since it reinstalls the same binary and it was still crashing; the problem wasn’t in the binary or system-wide configuration (which I didn’t touch). Then I had some intelligent instincts; I already guessed that the problem wasn’t there, and so it had to be in my add-ons, like vimperator. But I didn’t know which one. I’ve always tried to keep the number of addons that I use down; and the answer was simply

 rm -rf ~/.mozilla 

which blows all that add-on and everything else away. I keep my bookmarks on delicious, so that doesn’t matter, and all my other addons are non-critical, so this didn’t cost me anything except downloading some of them again if I felt like it. And it solved my problem.

Categories
firefox vim

vimperator and Outlook Web Access Light

So one feature of vimperator which has made it indispensable to me is Ctrl-I on a web form textbox. When vimperator receives Ctrl-I, it opens a gvim instance on the textbox, you can edit in gvim, and then vimperator puts your result back into the textbox. Amazingly useful; it’s let me write better emails than I did when I was just typing into a textbox and trying to send off the email without any editing ability. Some websites use Flash or some other kind of textboxes though (such as Google Docs), but now I deal with them manually by opening gvim myself and pasting a tmpfile because I’m so used to the advantage of having gvim on textboxes.

Another nuisance has been editing emails using Outlook Web Access. Since I use Firefox, it forces me into Outlook Web Access Light, which is one nuisance (I bet if I just change the browser ID using a Firefox plug-in then I could get the full Outlook Web Access). But the main nuisance is that once I’m in OWA Light, then when I’m composing an email using Ctrl-I, then OWA Light likes to timeout after about 3 minutes and the textbox disappears, and so when I’m done composing another lovely epistle in gvim, then my writings disappear when vimperator doesn’t find the textbox that OWA Light helpfully closed. I needed a way for gvim to save a duplicate copy whenever I’m using OWA, and gvim being the incredible machine that it is, there’s a 1-liner in .vimrc that does the trick:

autocmd VimLeave  vimperator-exchange* :write! >> /home/me/vimp.exch.txt

That’s it. Whenever gvim is about to leave a file beginning with vimperator-exchange*, then it writes an extra copy to vimp.exch.txt so if OWA Light closed the box, I still have it.

There might be a more elegant way to do this; for a while I was trying to get a unique script id using but it wasn’t worth it. I like this solution now anyway.

Categories
firefox

delicious and vimperator

I’ve been trying to figure out how to use delicious with vimperator. I installed the delicious vimperator plugin and now I have the :delicious command, which doesn’t seem to do anything as far as I can tell. I asked a couple of times on the freenode/#vimperator channel, which is very nice, but nobody seemed to know.

However I recently rediscovered :set guioptions+=mTB, which shows that, indeed, the regular Firefox is back there. And then it occured to me how to do it. CTRL-v is the pass-through to Firefox, and so CTRL-v CTRL-d opens the delicious bookmark page, and CTRL-v CTRL-b opens the delicious sidebar (if you have the regular delicious plug-in). This occured to me because, though I liked y for yanking the current address, I had to lookup CTRL-v CTRL-v to paste it since p doesn’t work. So:

Firefox Passthrough

CTRL-v

Paste from Clipboard

CTRL-v CTRL-v

Toggle Delicious Sidebar

CTRL-v CTRL-b

Add Bookmark to Delicious

CTRL-v CTRL-d