Twitch Clip Queue: Left Side Queue

Puts the clip queue on the left where the Gappy is

  1. // ==UserScript==
  2. // @name Twitch Clip Queue: Left Side Queue
  3. // @namespace floppycopier
  4. // @author floppycopier
  5. // @match https://jakemiki.me/twitch-clip-queue*
  6. // @grant GM_addStyle
  7. // @version 1.0
  8. // @description Puts the clip queue on the left where the Gappy is
  9. // ==/UserScript==
  10.  
  11. (() => {
  12. GM_addStyle(`
  13. .mantine-AppShell-body .mantine-AppShell-main .mantine-Container-root > .mantine-Grid-root > .mantine-Col-root:last-child {
  14. order: -1;
  15. }
  16. `)
  17. })()