Skip navigation.

Prepare!

Lee Harvey's Zombie Hit Parade

Posts tagged with "disney"

UserJS to fix Disney Channel

, , , ...

The kids discovered this one: Disney Channel blocks Opera when older versions (7.0) of Flash are installed.

Here's a really simple User JavaScript to allow Disney Channel to use Flash 7.0, etc...

disneychannel.js:
if (document.domain.match(/\.disney\.go\.com$/)) {
   window.opera.defineMagicFunction("DetectFlash",
      function(RealFunc, oThis, nversion, redirect, override) {
         return 1;
      });
}

Enjoy kiddies.