Toggle Auto Follow

Quickly toggle the 'Keep Current Pattern Selected' preference by pressing SHIFT + G

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name        Toggle Auto Follow
// @namespace   Jummbox Scripts
// @match       https://ultraabox.github.io/
// @match       https://aurysystem.github.io/goldbox/
// @match       https://jummb.us/
// @grant       GM_notification
// @version     1.4.1
// @author      PlanetBluto
// @description Quickly toggle the 'Keep Current Pattern Selected' preference by pressing SHIFT + G
// @license     MIT
// ==/UserScript==

const print = console.log

var inited = false

var toggleFunc = (elem, key) => {
    elem.value = key
    elem.dispatchEvent(new Event("change"))

    print(localStorage.getItem(key))
    GM_notification({"text": `switched to ${localStorage.getItem(key)}`, silent: true})
}

var int = setInterval(() => {
  var selectElem = document.querySelector(".selectContainer.menu.preferences > select")
  if (selectElem) {
    clearInterval(int)

    document.addEventListener("keydown", e => {
      if (e.which == 71 && e.shiftKey == true) {
        toggleFunc(selectElem, "autoFollow")
      }
    })
  }
}, 10)