Change the font of piaotian.com

更改飘天网小说阅读页面字体

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Change the font of piaotian.com
// @namespace    http://tampermonkey.net/
// @version      0.2.4
// @description  更改飘天网小说阅读页面字体
// @author       Yang Li
// @match        http://www.piaotian.com/html/*
// @match        https://www.piaotian.com/html/*
// @grant        none
// @require      https://code.jquery.com/jquery-3.3.1.slim.min.js
// ==/UserScript==

$(document).ready(function(){
    // v0.1
    //$myfont='font: 26px STKaiti, serif !important; line-height: 1.4 !important;';
    //$mywidth='width: 800px !important;';

    // v0.2.4
    // Improvements for mobile
    $('head').prepend('<meta name="viewport" content="width=device-width, initial-scale=1" />');
    $myFont='font: 1.5em STKaiti, serif; line-height: 1.4;';
    $myWidth='width: 80%;';
    $('#main #content').attr('style', $myFont + $myWidth);
//     $('#main #content').attr('style', $myFont);
});