Hi,
I was wondering if you could add an option to the settings to turn on/off zebra stripping. I find zebra stripping confusing and distracting while I program stuff.
Shift "Zebra coloring"
It also turns back on after I refresh the page
It works on mobile if you go to type then click caps and settings but resets after page refresh
that's normal, i think most settings do that
Yes, this preference seems to be volatile.
You may try a script to disable "Zebra coloring."
Tampermonkey script
// ==UserScript==
// @name No Zebra
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Disable Zebra scheme
// @author DD
// @match https://snap.berkeley.edu/snap/snap.html
// @icon
// @grant none
// ==/UserScript==
(function() {
world?.children[0]?.toggleZebraColoring();
})();