// ==UserScript== // @name Crunchyroll Player Wide // @namespace https://greasyfork.org/users/715485 // @version 0.1 // @description Coloca todos os players do crunchroll no formato wide (Modo Teatro) // @author luiz-lp // @match *://www.crunchyroll.com/* // @grant none // @downloadURL none // ==/UserScript== document.addEventListener('readystatechange', event => { if (event.target.readyState === "complete") { if(document.querySelector("#showmedia_video_box") != null){ document.querySelector("#showmedia_video_box").setAttribute("id", "showmedia_video_box_wide"); } if(document.querySelector("#showmedia_video_box_wide") != null){ document.querySelector("#showmedia_video_box_wide").setAttribute("class", "wide-player-container wide-player-container-16-9"); } if(document.querySelector("#main_content") != null){ document.querySelector("#main_content").setAttribute("class", "new_layout new_layout_wide"); } //document.getElementById("originalDivId").setAttribute("id", "newDivId"); } });