// ==UserScript== // @name adshorte.shorte // @namespace http://adshorte/ // @include *://adshorte.com/* // @version 1 // @description adshorte.com用 // @grant none // @run-at document-end // @downloadURL none // ==/UserScript== (function() { var iframes = document.getElementsByTagName('iframe'); for(var iframe of iframes){ if(iframe.src.indexOf("dailymotion") != -1){ iframe.src = ""; } } })();