Разблокирует чекбокс возрастного ограничения на Rutube.
// ==UserScript==// @name Разблокировать флажок возрастного ограничения// @namespace http://tampermonkey.net/// @version 0.2// @description Разблокирует чекбокс возрастного ограничения на Rutube.// @author You// @match https://studio.rutube.ru/*// @grant none// @license MIT// ==/UserScript==(function() {let observer = new MutationObserver(mutations => {mutations.forEach(mutation => {if (mutation.addedNodes.length > 0) {let checkbox = mutation.addedNodes[0].querySelector('input[name="adult"]');if (checkbox) {checkbox.disabled = false; // установить свойство disabled в falselet parent = checkbox.parentElement;parent.classList.remove('pen-checkbox_disabled'); // удалить класс отключенияlet checkMark = parent.querySelector('.pen-checkbox__checkmark');checkMark.classList.remove('pen-checkbox__checkmark_disabled');}}});});observer.observe(document, {childList: true,subtree: true});})();