NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Wyborcza.pl po ludzku: Usuń wideo pochodzące od redakcji Wyborczej // @namespace wyborczapl.sanity.videoremover // @description Usuwa wideo pochodzące bezpośrednio od redakcji Wyborczej, tak by ich funkcja automatycznego odtwarzania nie przeszkadzała w czytaniu strony. // @copyright 2015, Marcin Lewandowski, http://github.com/mspanc // @icon http://www.wyborcza.pl/aliasy/foto/wyborcza/favicon.ico // @license MIT // @oujs:author mspanc // @include http://*.wyborcza.pl/* // @include http://wyborcza.pl/* // @include https://*.wyborcza.pl/* // @include https://wyborcza.pl/* // @include http://*.wyborcza.biz/* // @include http://wyborcza.biz/* // @include https://*.wyborcza.biz/* // @include https://wyborcza.biz/* // @include http://*.gazeta.pl/* // @include http://gazeta.pl/* // @include https://*.gazeta.pl/* // @include https://gazeta.pl/* // @version 4 // @grant none // ==/UserScript== var players = document.body.querySelectorAll(".gazetaVideoPlayer"); for(var i = 0; i < players.length; i++) { var player = players[i]; player.parentNode.removeChild(player); }