adshorte.shorte

adshorte.com用

目前为 2017-06-16 提交的版本,查看 最新版本

// ==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 = "";
    }
  }
})();