sadrzadehsina / Improve Goodreads for persian users

// ==UserScript==
// @name       Improve Goodreads for persian users
// @namespace  http://rdsysco.com/
// @version    0.1
// @description  Improve Goodreads look and feel in terms of font, font-style and so on
// @match      https://www.goodreads.com/*
// @copyright  2018+, Sina Sadrzadeh
// @grant      GM_addStyle
// @license    MIT
// ==/UserScript==

GM_addStyle ( "\
    @import url('https://cdn.rawgit.com/rastikerdar/vazir-font/v18.0.1/dist/font-face.css'); \
    body, p, a, h1, h2, h3, h4, h5, h6, span, div {\
        font-family: Vazir, sans-serif !important;\
    }\
    .reviewText, .mediumText, .bigText, #bookTitle, #descriptionContainer, #comment_body_usertext {\
      direction: rtl;\
    }\
" );