cleanLinuxQuestionsOrg

clean LinuxQuestions.Org ads

От 02.05.2022. Виж последната версия.

// ==UserScript==
// @name         cleanLinuxQuestionsOrg
// @namespace    http://tampermonkey.net/
// @version      0.11
// @description  clean LinuxQuestions.Org ads
// @author       mooring
// @match        https://www.linuxquestions.org/*
// @icon         https://www.google.com/s2/favicons?domain=linuxquestions.org
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var css = 'ins[id],td.page[valign="top"] > div[style*=center]';
    var q = document.querySelector('#cleanLinuxQuestionsOrg');
    if(!q){
        var s = document.createElement('style');
        s.type = 'text/css';
        s.id = 'cleanLinuxQuestionsOrg@mooring';
        s.innerHTML = css;
        document.body.appendChild(s);
    }
    // Your code here...
})();