Skip to content

Instantly share code, notes, and snippets.

@Dan-Q
Created February 8, 2026 20:21
Show Gist options
  • Select an option

  • Save Dan-Q/b18eb3006cc3b27524720ce2f83784dc to your computer and use it in GitHub Desktop.

Select an option

Save Dan-Q/b18eb3006cc3b27524720ce2f83784dc to your computer and use it in GitHub Desktop.
[Userscript] Three Rings: add 'count' alongside volunteers on shifts
// ==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