Shahrekhabar

Increase the height of the news - افزایش اندازه خبر

// ==UserScript==
// @name         Shahrekhabar
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Increase the height of the news - افزایش اندازه خبر
// @author       You
// @match        www.shahrekhabar.com/news/*
// @grant        none
// ==/UserScript==

setTimeout(() => {
    const news = document.getElementById("myframe")
    news.style.height = "100%"
}, 1000)