您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Set the minimum font weight on a page, to make things readable
- // ==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;
- }
- }
- })();