Steam Review Comments enabler

Automatically checks "enable comments" in your new reviews

// ==UserScript==
// @name:en      Steam Review Comments enabler
// @name         Включатель коммментариев в отзывах Steam
// @description:en  Automatically checks "enable comments" in your new reviews
// @description  Автоматически ставит ☑ в опции "Разрешить комментарии" при публикации нового отзыва
// @namespace    https://greasyfork.org/ru/users/303426-титан
// @version      1.0.0
// @author       Титан
// @match        https://store.steampowered.com/app/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
	window.onload = function() {
		let comCheck = document.getElementsByClassName("controlblock enable_review_comments")[0].firstElementChild;
		comCheck.click();
	}
})();