Greasy Fork is available in English.

invidious auto-dash

Automatically appends "quality=dash" to an invidio.us URL if "the media could not be loaded"

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          invidious auto-dash
// @description   Automatically appends "quality=dash" to an invidio.us URL if "the media could not be loaded"
// @author        nullgemm
// @version       0.1.6
// @grant         none
// @match         *://invidious.snopyta.org/watch?v=*
// @run-at        document-idle
// @namespace     https://greatest.deepsurf.us/en/users/322108-nullgemm
// ==/UserScript==

var elem = document.getElementsByClassName("vjs-modal-dialog-content")[0];
var url = new URL(window.location);

function mutation_callback(mutations) {
  if (elem.childNodes.length == 1) {
    url.searchParams.set("quality", "dash")
    window.location.replace(url);
  }
}

function mutation_caller(mutations, observer) {
  mutation_callback(mutations);
}

var obs = new window.MutationObserver(mutation_caller);
obs.observe(elem, {childList:true, subtree:true});