• [^] # Re: Le rapport avec le libre

    Posté par . En réponse au lien Pourquoi arrêter l’avion ne devrait plus être un débat. Évalué à 6.

    Tu peux via un user script

    // ==UserScript==
    // @name DLFTags
    // @namespace DLFTags
    // @version 0.1
    // @author You
    // @match https://linuxfr.org/*
    // @grant none
    // @run-at document-body
    // ==/UserScript==
    (function() {
     'use strict';
     let tags = new Set(['hors-sujet']);
     for(let article of document.querySelectorAll("article")) {
     for(let tag of article.querySelectorAll("a[rel=tag]")) {
     if (tags.has(tag.textContent)) {
     article.style.display = 'none';
     break;
     }
     }
     }
    })();

    C'est cadeau

    https://linuxfr.org/users/barmic/journaux/y-en-a-marre-de-ce-gros-troll