// ==UserScript== // @name Highlight Radio Bubbles // @version 2026.1.28 // @author Adam Lui // @namespace https://adamlui.com // @description Makes radio bubbles bigger & more colorful when brought to focus. // @license MIT // @icon https://cdn.jsdelivr.net/gh/adamlui/userscripts@ccc23a5/highlight-radio-bubbles/assets/images/icons/radio-bubble/icon48.png // @icon64 https://cdn.jsdelivr.net/gh/adamlui/userscripts@ccc23a5/highlight-radio-bubbles/assets/images/icons/radio-bubble/icon64.png // @compatible chrome // @compatible firefox // @compatible opera // @compatible safari // @compatible edge // @match *://*/* // @downloadURL https://raw.githubusercontent.com/adamlui/userscripts/master/highlight-radio-bubbles/highlight-radio-bubbles.user.js // @updateURL https://raw.githubusercontent.com/adamlui/userscripts/master/highlight-radio-bubbles/highlight-radio-bubbles.user.js // @homepageURL https://github.com/adamlui/userscripts // @supportURL https://github.com/adamlui/userscripts/issues // @contributionURL https://ko-fi.com/adamlui // ==/UserScript== (() => { 'use strict' const style = document.createElement('style') style.innerHTML = `input[type=radio]:focus { outline-color: red !important ; width: 25px !important ; height: 25px !important }` document.head.append(style) })()