EzcapeChat 80% Width

Sets chat width to 80%

이 스크립트 설치?
작성자 추천 스크립트

BaskinBros Theme for EzcapeChat 스크립트도 사용해 보세요.

이 스크립트 설치
// ==UserScript==
// @name        EzcapeChat 80% Width
// @namespace   BaskinBros Scripts
// @version     1.3
// @author      thebranmaster
// @description Sets chat width to 80%
// @license MIT
// @match       *://*.ezcapechat.com/rooms/*/swf
// @grant       none
// @run-at      document-end
// ==/UserScript==
 
function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

addGlobalStyle('#swf_chat_normal{width:80% !important}');