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