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