Avoid the annoyng popup that locks download buttons until you give a Like or +1 on the page.
目前為
// ==UserScript==
// @name Hackintosh.zone Unlock Downloads
// @namespace Tremal Naik
// @description Avoid the annoyng popup that locks download buttons until you give a Like or +1 on the page.
// @include http*://www.hackintosh.zone/file/*/?do=download&confirm=1
// @version 1
// @grant none
// ==/UserScript==
window.addEventListener('load', function() {
var overlay=document.getElementsByClassName('onp-sl-overlap-box')[0];
overlay.parentNode.removeChild(overlay);
}, false);