Hi @yodog,
Thank you so much for sharing this script!
However I have a hard time understand how to load it
I found post https://levelup.gitconnected.com/how-to-load-external-javascript-files-from-the-browser-console-8eb97f7db778
and try to load with below in browser console but doesn't seems to work. Would you mind shed some light with me on the usage?
Thanks
const loadScript = async (url) => {
const response = await fetch(url)
const script = await response.text()
eval(script)
}
const scriptUrl = "https://raw.githubusercontent.com/yodog/userscripts/master/github-custom-options.user.js"
loadScript(scriptUrl)
