> I’m happily walking away from this with an extra 21GB in my pocket! And now I ask you: is your Chrome bigger than mine?
Given I don't have to rely on third party updaters, I doubt it. Let's see...
$ let size=0; dpkg -L chromium | while read path; do if [ -f "$path" ]; then let size=$size+$(du -sb "$path" | awk '{print $1}'); echo $size bytes, $(($size/1024/1024)) megabytes; fi; done;
172060669 bytes, 164 megabytes
$ du -sh .{cache,config}/chromium
8.4M .cache/chromium
25M .config/chromium
So the cache is 8M, config files 25M and program files 164M (listed by dpkg -L, then some command line magic to add up file sizes). A grand total of just under 200MB.
I made a simple firefox/chrome extension for people like you and me that horde tabs. You might find it useful to find tabs and quickly navigate to them by clicking on the link in the list. It's free and open source. The github page has a gif showing usage.
It sure it is... any idea what it should be? Firefox has a problem with re-assigning keys but in chrome you can change them inside the extension manager area. There's a bug filed for firefox to fix this.
can't bind to Ctrl-` because of some limitation of the browser and Ctrl-Space didn't work for some reason as well. I ended up using (ctrl/comamnd)+Shift+E as it didn't seem to have a shortcut assigned to it and it is very easy to use with one hand. Hopefully that works well for most people. I'll update the extensions today but it takes a few days to get code approval on firefox. Chrome update should be available within a few hours of submitting.
My next feature request would be to show the domain (e.g. "news.ycombinator.com") next to each link, like HN does. That'd let ctrl-F find by domain.
Additionally, being able to sort by domain would be good. Not per-window, but globally. Just a big list of tabs. I'm almost never looking for a particular window, but rather a particular tab of a specific site.
Another minor feature request is to put the total number of tabs as a badge number on the icon itself. I.e. instead of just showing tabist's icon, show the icon with "53" on it if I have 53 tabs open.
Or, y'know, it's pretty good how it is now, so feel free to just ignore this. :)
Those are all good ideas and I am likely to implement them. I published the new version so it should be available within a few days for firefox and within a few hours for chrome.
Not sure why that's not working for you. Let me download it from the chrome store and see. it's working for me on chrome osx 64bit same version of chrome.
Perhaps try restarting chrome and if that doesn't work you can try uninstalling the extension and reinstalling it. I just got the extension from the chrome store and command-shift-E worked fine. there is also the possibility that you have command-shift-e shadowed by another command(system wide shortcut or another extension). try going to chrome:extensions and going to the very bottom and selecting "keyboard shortcuts" and changing the one labeled "Toggle or activate a Tabist tab" the Tabist entry.
feel free to email me at the email in my profile if that doesn't work or if you figured out what the issue was.
I think the problem was that I had Tabist installed before, and so the suggested keybind didn't take effect when I upgraded to a new version. Not a big deal with only a few users.
EDIT: On second thought, I have Tampermonkey installed, which apparently defaults to Command-Shift-E: http://i.imgur.com/DAEvgNB.png I think that was shadowing it.
Yeah, this extension rocks! I'm going to use this forever.
The only other feedback I have is that when you open Tabist and click on a tab, it'd be nice if you automatically close the tabist tab (and if possible to re-focus the previously active tab, which isn't necessarily the rightmost tab). Otherwise you end up with multiple windows with Tabist in focus.
This is fantastic though. I've been telling my friends about Tabist and everyone's saying how useful it is.
Well it's part laziness (and priortising) and part working on an abstraction layer for the DOM API which can be quite hairy (it is known :P). So I have 10 windows open in total.
I have lots and lots of pages open of DOM documentation from many sources and many GitHub code searches to see how others' code deals with the mess. ~30% tabs are probably StackOverflow. The rest is (potentially useful) Google searches, programming blog posts and the usual pinned tabs (Gmail etc.).
I use a AutoHotKey script to make the scroll wheel switch between tabs (this is the default behavior on Ubuntu but I'm on Window), this way I can quickly scroll/look for the desired tab through an entire 100-150 tab window in 10-15 seconds. Thinking of this.. I would have probably indeed gone insane without the AHK script.. (or just kept fewer tabs opened instinctively? :P).
Given I don't have to rely on third party updaters, I doubt it. Let's see...
So the cache is 8M, config files 25M and program files 164M (listed by dpkg -L, then some command line magic to add up file sizes). A grand total of just under 200MB.