Sunday, 27. May 2007, 22:50:55
netflix, movies, humor, recommendations
So I login to NetFlix this weekend, and check the "Movies You'll Love" page, and what do I see?
Let me guess why this was recommended:
- Some guy falls down
- ...with a scar on his face
- ...and it's hilarious!
Wednesday, 26. April 2006, 02:54:21
opera, browser, userjs, netflix
...
I've updated my initial
NetFlix UserJS script to version 2.0. This new version includes a fix for their shrinking form buttons. You can
view or download the new version from here, or simply copy-and-paste the relevant code fix for the shrinking buttons here:
if (document &&
document.domain &&
document.domain.match(/^(www\.)?netflix\.com$/)) {
document.addEventListener("load",
function(e) {
var inps = document.getElementsByTagName("INPUT");
for (var n = 0, i; i = inps[ n ]; n++) {
if (!i.onmouseover && !i.onmouseout) continue;
var cn = i.className;
if ((cn != "bsub_primary") &&
(cn != "bsub_secondary")) continue;
i.className = "";
i.style.width = "auto";
i.className = cn;
}
}, false);
}
For my fellow NetFlix subscribers, enjoy!