Greasy Fork

Greasy Fork is available in English.

网易云音乐歌单封面图快速提取

点击封面图即可

当前为 2021-06-08 提交的版本,查看 最新版本

// ==UserScript==
// @name         网易云音乐歌单封面图快速提取
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  点击封面图即可
// @author       ZeroingIn
// @match        https://music.163.com/*
// @icon         https://www.google.com/s2/favicons?domain=163.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    window.addEventListener('load', function() {
        // 获取图片标签
        const images = document.querySelectorAll(".u-cover-dj img")
        const imgOuterHTML = images[0].outerHTML
        // 获取封面图url并去除缩略图参数
        const imgSrc = (images[0].src).split('?')[0]
        // 给封面图加上点击在新窗口打开封面图的功能
        document.querySelector('.msk').outerHTML=`<a href="${imgSrc}" target="_blank" class="msk"></a>`
    }, false);
})();