QQ音乐歌单获取所有歌名tempmonkey
// ==UserScript==
// @name 歌名获取
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://y.qq.com/musicmac/v6/playlist/detail.html*
// @icon https://www.google.com/s2/favicons?sz=64&domain=qq.com
// @grant none
// @require https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js
// ==/UserScript==
(function() {
'use strict';
function readName(){
console.log("测试·······························");
$(".songlist__name").each(function () {
console.log( "songlist__name0---------------------------------------");
});
$(".songlist__name > .mod_songname__cont>.mod_songname__name").each(function () {
console.log( $(this).attr("title"));
});
};
$(document).ready(function(){
//隐藏文本
setTimeout(function(){readName();},2000);
console.log( "启动脚本。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。");
})
// Your code here...
})();
浙公网安备 33010602011771号