Block Yahoo! Shortcuts in Opera
Friday, 18. July 2008, 13:00:17
For those interested, here's how to block Yahoo's annoying "Shortcuts" feature in their news articles...
- Goto Opera Preferences
- Advanced tab
- Content section
- Press Blocked Content...
Lee Harvey's Zombie Hit Parade
Friday, 18. July 2008, 13:00:17
For those interested, here's how to block Yahoo's annoying "Shortcuts" feature in their news articles...
Friday, 9. February 2007, 02:19:25
if (document.domain.match(/sports\.yahoo\.com$/)) {
document.addEventListener("load",
function() {
document.sf1 = null;
}, 0);
}
Monday, 9. October 2006, 00:58:14
if (document.domain.match(/^sports\.yahoo\.com$/) &&
window.location.href.match(/&page=plays/)) {
document.addEventListener("load",
function() {
var yspMainContent = document.getElementById("yspMainContent");
if (!yspMainContent) return;
yspMainContent.innerHTML = yspMainContent.innerHTML.replace(/\<thead\>/gi, '<table width="560" border="0" cellpadding="0" cellspacing="0"><thead>');
yspMainContent.innerHTML = yspMainContent.innerHTML.replace(/\<\/tbody\>/gi, '</tbody></table>');
}, 0);
}
Saturday, 11. February 2006, 02:47:08
if (document.domain.match(/^sports\.yahoo\.com$/)) {
if (window.location.href.indexOf("boxscore?gid=") > 27) {
document.addEventListener("load",
function(e) {
if (document.title.indexOf("999") > 0) {
window.location.reload(true);
}
}, true);
}
}
Sunday, 25. September 2005, 03:37:21
[B]if (document.domain.match(/^(dsl\.)?sbc\.yahoo\.com$/) ||
document.domain.match(/^(www\.)?avatar(s)?\.yahoo\.com$/) ||
document.domain.match(/^(express\.)?rogers\.yahoo\.com$/)) {
window.opera.defineMagicFunction("yg_Browser",
function() {
var nav = window.navigator;
this.agt = nav.userAgent.toLowerCase();
this.major = parseInt(nav.appVersion);
this.ns = false;
this.ns6 = false;
this.ns4up = false;
this.op = false;
this.fb = true;
this.dom = 1;
this.ie = 0;
this.ie4up = false;
this.ie5 = false;
this.gk = 1;
this.fx = true;
this.sf = false;
this.win = true;
this.mac = false;
});
}[/B]