Выделяет правильные ответы.
// ==UserScript==
// @name Подсветка правильных ответов на тесты obrazovaka.ru
// @namespace aaaaaaaaaa
// @version 1.0
// @description Выделяет правильные ответы.
// @author funH4xx0r
// @match *://obrazovaka.ru/test/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.head.innerHTML+='<style>[data-correct="1"]+label{color:#000!important;outline-width:2px!important;outline-color:#00ff00!important;outline-style:dashed!important;outline-offset:3px!important;padding-left:3px!important;font-style:italic}</style>'
// gg ez
})();