Spotify - Ensure Default Ctrl + Click Bebehavior.
// ==UserScript==
// @name Spotify - Ensure Default Ctrl + Click Bebehavior
// @description Spotify - Ensure Default Ctrl + Click Bebehavior.
// @version 0.2
// @author to
// @namespace https://github.com/to
// @license MIT
//
// @run-at document-start
//
// @match https://open.spotify.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=spotify.com
// ==/UserScript==
window.addEventListener('click', (e) =>{
if(e.ctrlKey)
e.stopImmediatePropagation();
}, true);