This tệp tin contains bidirectional Unicode text that may be interpreted or compiled differently kêu ca what appears below. To review, open the tệp tin in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Easy read TruyenFull.Vn | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to lớn 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); | |
} | |
})(); |
Bình luận