cestrand / pap.pl

// ==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');

})();