// ==UserScript== // @name 网易云 Web - 自动补 os=pc // @version 1.0 // @author hbhbhbhbhvb // @match *://music.163.com/* // @match *://*.music.163.com/* // @run-at document-start // @description 网易云自动补充os=pc,以绕过一些情况下歌单显示不全的限制。 // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // 只在还没设的时候补,避免重复 if (!document.cookie.match(/\bos=pc\b/)) { document.cookie = "os=pc; path=/"; console.log('[os=pc] 已自动补全'); } })();