fodin / PS VR2

// ==UserScript==
// @name         PS VR2
// @namespace    YouTube
// @version      2024-05-28
// @description  Выделяет игры для PS VR2 цветом.
// @author       Fodin
// @match        https://www.youtube.com/@PlayStation/videos
// @icon         https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @updateURL    https://openuserjs.org/meta/fodin/PS_VR2.meta.js
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
  'use strict';

  // const observer = new MutationObserver(callback);
  // observer.observe(document.querySelector('body'), {childList: true});

  function selectVR() {
    const titles = document.querySelector('#contents').querySelectorAll('#video-title');
    titles.forEach(function (title) {
      if (title.textContent.includes('PS VR2')) {
        title.style = 'color:red';
      }
    });
  }

  setInterval(selectVR, 2000);
})();