juliao / media.ccc.de-subtitle-font-size-increase

// ==UserScript==
// @name         media.ccc.de-subtitle-font-size-increase
// @namespace    https://github.com/juliao
// @version      0.1
// @description  Make the subtitles bigger and yellow on media.ccc.de (You need to enable the subtitles in the website's CC button)
// @author       juliao
// @match        https://media.ccc.de/v/*
// @grant        none
// @license		 BSD-2-Clause
// ==/UserScript==

(function() {
    'use strict';

    var style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = '.mejs__captions-text { font-size: 40px !important; font-weight: bold !important; color: yellow !important; background: rgba(20,20,20,0.8) !important; }';
    document.getElementsByTagName('head')[0].appendChild(style);
})();