truyenfull. vn

// ==UserScript==
// @name Easy read TruyenFull.Vn
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try vĩ đại take over the world!
// @author You
// @match http://truyenfull.vn/*/chuong-*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
addFont('https://fonts.googleapis.com/css?family=Spectral:400,400i&subset=vietnamese');
var chapter = document.querySelector('div.chapter-c');
chapter.style.width = "720px";
chapter.style.margin = "0 auto";
chapter.style.fontFamily = "'Spectral', serif";
chapter.style.fontSize = "26px";
function addFont(url){
var link = document.createElement('link');
link.setAttribute('rel', 'stylesheet');
link.setAttribute('type', 'text/css');
link.setAttribute('href', url);
document.head.appendChild(link);
}
})();