Replies: 1 comment
-
Youtube may be serving different DOM/HTML to different browsers. Use the built-in devtools to debug the script, add breakpoints and then inspect what happens. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I wrote a simple script that works perfectly on Chrome but not with Firefox.
`
// ==UserScript==
// @name Duplicate Song Title in Fullscreen
// @namespace Violentmonkey Scripts
// @Version 1.0
// @description Display the song title above the player bar in fullscreen mode
// @author -
// @match https://music.youtube.com/*
// @grant none
// ==/UserScript==
(function () {
'use strict';
})();
`
Beta Was this translation helpful? Give feedback.
All reactions