Crudely removes adblock interference from Last.fm's radio waves.
当前为
// ==UserScript==
// @name Last.fm Interference Inhibitor
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Crudely removes adblock interference from Last.fm's radio waves.
// @author thebspatrol
// @match http*://last.fm/*
// @match http*://*.last.fm/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var _html = document.getElementsByTagName("html")[0];
var b = document.body;
var d = document.createElement(genTag());
// transfer body and respective CSS to randomly tagged element
d.innerHTML = document.body.innerHTML;
d.style.cssText = document.defaultView.getComputedStyle(b, "").cssText;
_html.replaceChild(d, b);
})();