YouTube Background Playback - Kiwi Browser

Enable YouTube background playback in Kiwi.

Zainstaluj skrypt?
Skrypt zaproponowany przez autora

Może Ci się również spodobać. AIGPT Everywhere

Zainstaluj skrypt
// ==UserScript==
// @name         YouTube Background Playback - Kiwi Browser
// @namespace    https://greasyfork.org/en/users/670188-hacker09?sort=daily_installs
// @version      1
// @description  Enable YouTube background playback in Kiwi.
// @author       hacker09
// @match        *://*.youtube.com/*
// @match        *://*.youtube-nocookie.com/*
// @run-at       document-end
// @grant        none
// ==/UserScript==

'use strict';
const lactRefreshInterval = 5 * 60 * 1000; // 5 mins
const initialLactDelay = 1000;

// Page Visibility API
Object.defineProperties(document, { 'hidden': { value: false }, 'visibilityState': { value: 'visible' } });
window.addEventListener('visibilitychange', e => e.stopImmediatePropagation(), true);

// _lact stuff
function waitForYoutubeLactInit(delay = initialLactDelay) {
  if (window.hasOwnProperty('_lact')) {
    window.setInterval(() => { window._lact = Date.now(); }, lactRefreshInterval);
  }
  else{
    window.setTimeout(() => waitForYoutubeLactInit(delay * 2), delay);
  }

}

waitForYoutubeLactInit();