Set minimum font weight

Set the minimum font weight on a page, to make things readable

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         Set minimum font weight
// @namespace    http://md5-f3c5e23e69e2fa0b44e254d4548c5915.committed-identity.internal/setminimumfontweight
// @version      1.0
// @description  Set the minimum font weight on a page, to make things readable
// @author       Committed Identity MD5 f3c5e23e69e2fa0b44e254d4548c5915
// @copyright    Copyright (C) 2017 Committed Identity MD5 f3c5e23e69e2fa0b44e254d4548c5915
// @license      https://opensource.org/licenses/MIT
// @match        http://*/*
// @match        https://*/*
// @grant        none
// @run-at       document-idle
// ==/UserScript==

(function() {
    'use strict';

    var minweight = 400;

    var all = document.getElementsByTagName("*");
    for (var i=0, max=all.length; i < max; i++) {
        var weight = parseFloat(window.getComputedStyle(all.item(i), null).getPropertyValue('font-weight'));
        if (weight < minweight) {
            all.item(i).style.fontWeight = minweight;
        }
    }

})();