NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name pap.pl
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Remove newsletter button and disable content selection prevention
// @author You
// @match *://*.pap.pl/*
// @grant none
// @licence MIT
// ==/UserScript==
(function() {
'use strict';
var el = document.querySelector("body > div > header > div");
console.log("Hiding newsletter button:", el);
el.style.display = "none";
console.log("Enabling content selection");
document.body.setAttribute('style', 'user-select:auto !important');
})();