您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Make craftwar's obs plugin (https://craftwarblog.blogspot.com/2018/01/obs-plugin-playing-song.html) able to get Spotify song name.
当前为
// ==UserScript== // @author craftwar // @name Spotify song-name helper // @description Make craftwar's obs plugin (https://craftwarblog.blogspot.com/2018/01/obs-plugin-playing-song.html) able to get Spotify song name. // @copyright 2019, craftwar (https://craftwarblog.blogspot.com/) // @license GPL-3.0+; https://www.gnu.org/licenses/gpl-3.0.txt // @homepageURL https://github.com/craftwar/userscript/tree/master/spotify-song-name-helper // @version 0.1.20190602 // @namespace github.com.craftwar // @match https://open.spotify.com/* // @grant none // @run-at document-end // ==/UserScript== (() => { const track_observer = new MutationObserver( ()=> { if (!document.title.endsWith(" - YouTube")) document.title += " - YouTube"; }); track_observer.observe(document, {subtree:true, characterData:true}); })();