edición general
version

version

En menéame desde septiembre de 2008

6,00 Karma
66K Ranking
0 Enviadas
0 Publicadas
2 Comentarios
0 Notas

No dar de comer a los animales [6]

  1. #1 Uf ahora mismo no sabria decirte, a mi me pasaron uno por el notame y despues yo lo modifique a mi gusto (tampermonkey)

    // ==UserScript==
    // @name meneame.net - Destacar edad de usuarios
    // @namespace tampermonkey.net/
    // @version 3.3
    // @description Destacar edad de usuarios.
    // @author ᵒᶜʰᵒᶜᵉʳᵒˢ & Niko
    // @match ://*.meneame.net/
    // @connect meneame.net
    // @icon www.meneame.net/favicon.ico
    // @grant GM_addStyle
    // @grant GM.setValue
    // @grant GM.getValue
    // @grant GM.listValues
    // @grant GM.deleteValue
    // @grant GM.xmlHttpRequest
    // @license GNU GPLv3
    // ==/UserScript==

    // RECOMENDADO USAR JUNTO AL CSS DE @Ergo: userstyles.world/style/1811

    // ---- SCRIPT CONFIG ----
    const CACHE_DAYS = 30;
    const GREEN_DAYS = 30;
    const ORANGE_DAYS = 30;
    const RED_DAYS = 30;
    const GREEN_COLOR = "#0ba800";
    const ORANGE_COLOR = "#ffa200";
    const RED_COLOR = "#ff0000";

    const GOLD_MEDAL_COLOR = "#FFCC00";
    const SILVER_MEDAL_COLOR = "#999999";
    const BRONZE_MEDAL_COLOR = "#A05A2C";
    const SILVER_YEARS = 5;
    const BRONZE_YEARS = 3;

    const NOOB_DAYS = RED_DAYS + ORANGE_DAYS + GREEN_DAYS;
    const FILLCOLOR = 'FILLCOLOR';
    const MEDAL_COLOR = 'MEDAL_COLOR';
    const YEARS_MEDAL = 'YEARS_MEDAL';

    const EXECUTION_MIN_DELAY_MS = 1000;
    const EXECUTION_NEGATIVE_DELAY_MS = 120;

    // ---- API values ----
    const USER_LOCATIONS = [
    ['.username',null],
    ['.news-submitted',3]
    ];
    const REQUEST_URL = "www.meneame.net/backend/get_user_info?id=";;
    const AVATAR_CLASSES = ".username:not([class^='nav-bar-option']), .news-submitted a.tooltip";
    const URL_VOTERS = 'https://www.meneame.net/backend/meneos.php?id=MENEO_ID&p=1';
    const NEGATIVE_HEADER = '.news-details';
    const NEGATIVE_HEADER_CONTENT = 'votos negativos:';
    const NEGATIVE_COUNTER_CLASS = '.negative-vote-number';
    const STORY_BLOG = '.story-blog';

    // ---- SVG CODE ----
    const SVG_CSS_Tooltip = "a.SVG…   » ver todo el comentario

Polémica sobre "El Finanzas" [13]

  1. Yo me hice esto para tampermonkey:

    // ==UserScript==
    // @name Meneame Shit Remover
    // @namespace tampermonkey.net/
    // @version 1.0
    // @description Meneame Shit Remover
    // @author Koyadovic
    // @match www.meneame.net/*
    // @icon www.meneame.net/favicon.ico
    // @grant none
    // ==/UserScript==


    (function() {
    const shitSelectors = [
    '#newswrap aside',
    'div#header-banner',
    '#newswrap .sponsored',
    ];
    for(var shitSelector of shitSelectors) {
    var shitToRemove = document.querySelector(shitSelector);
    if(shitToRemove != null) shitToRemove.remove();
    }
    })();

    Elimina esos baners que nos han metido nuevos. El servidor de meneame tiene la libertad de devolver cualquiera que sea el código que quieren que ejecute mi navegador. Nosotros tenemos el poder que alterar ese código para que nuestros navegadores hagan lo que nosotros queremos que hagan.

Tiene que ser duro ser el servidor de Menéame hoy [144]

  1. Para tampermonkey me hice esta mierda:

    // ==UserScript==
    // @name Meneame Shit Remover
    // @namespace tampermonkey.net/
    // @version 1.0
    // @description Meneame Shit Remover
    // @author Koyadovic
    // @match www.meneame.net/*
    // @icon www.meneame.net/favicon.ico
    // @grant none
    // ==/UserScript==


    (function() {
    const shitSelectors = [
    '#newswrap aside',
    'div#header-banner',
    '#newswrap .sponsored',
    ];
    for(var shitSelector of shitSelectors) {
    var shitToRemove = document.querySelector(shitSelector);
    if(shitToRemove != null) shitToRemove.remove();
    }
    })();

    Elimina la publi y los artículos sponsored.

menéame