Haaretz Movie Stopper

By arthurScripts Last update Dec 29, 2008 — Installed 79 times.

There are 2 previous versions of this script.

// ==UserScript==
// @name           Haaretz Movie Stopper
// @include        http://www.cast-tv.biz/play/*
// ==/UserScript==


(function() {
    if (window.location.href.indexOf('autoplay=true') != -1) {
        window.location.href = window.location.href.replace('autoplay=true','autoplay=false');
    }
})();