NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name tubitv-subtitle-font-size-increase
// @namespace https://github.com/juliao
// @version 0.1
// @description Make the subtitles bigger and yellow on TubiTV (You need to enable the subtitles and background in the CC button on TubeTV for better view)
// @author juliao
// @match https://*.tubitv.com/movies/*
// @grant none
// @license BSD-2-Clause
// ==/UserScript==
(function() {
'use strict';
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '#captionsComponent span { font-size: 40px !important; font-weight: bold !important; color: yellow !important; }';
document.getElementsByTagName('head')[0].appendChild(style);
})();