Created
February 8, 2026 20:21
-
-
Save Dan-Q/b18eb3006cc3b27524720ce2f83784dc to your computer and use it in GitHub Desktop.
[Userscript] Three Rings: add 'count' alongside volunteers on shifts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Three Rings: add 'count' alongside volunteers on shifts | |
| // @namespace Violentmonkey Scripts | |
| // @match *://*.3r.org.uk/rota | |
| // @match *://*.3r.org.uk/rota/* | |
| // @grant GM_addStyle | |
| // @version 1.0 | |
| // @author Dan Q | |
| // @description Switch the list of volunteers on a shift into a numbered list so they're easy to enumerate. | |
| // ==/UserScript== | |
| GM_addStyle(` | |
| body.controller_rota_controller .rota_item .rota_item_detail ul, | |
| body.controller_rota_controller .rota_item .rota_item_detail ul li { | |
| list-style: decimal inside; | |
| } | |
| `); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment