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');
}
})();