Разблокирует чекбокс возрастного ограничения на 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 в false
let 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
});
})();