7mmtv picture ratio

try to take over the world!

// ==UserScript==
// @name         7mmtv picture ratio
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       AutoComplete
// @match        https://7mmtv.tv/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var dom = document.getElementsByClassName('latest-korean-box-img');
    for(var i=0,len=dom.length; i<len; i++){
        dom[i].style.height="auto";
    }
})();