// ==UserScript== // @name 蜻蜓FM-当前页电台网络地址下载【最转换为欧卡电台格式】 // @namespace http://tampermonkey.net/ // @version 1.4 // @description 蜻蜓FM-当前页电台网络地址下载 // @author PwnInt // @match https://www.qingting.fm/radiopage/* // @include https://www.qingting.fm/ // @icon https://www.google.com/s2/favicons?domain=qingting.fm // @grant unsafeWindow // @run-at document-end // @downloadURL none // ==/UserScript== (function() { 'use strict'; /* 脚本实际属于自用脚本,用不了的希望见谅,蜻蜓FM地址:https://www.qingting.fm 第一次进入到电台页面是可以显示下载按钮的,如果在电台页面切换到其他页面再切换回来,需要刷新一下才会显示按钮【定时器的原因导致需要这步操作,否则太浪费资源】 */ //var LocalNum_QT = 0;//记录本地id unsafeWindow.LocalNum_QT = 0; function AddDownload_Button()//移除二维码下载的文字,改为自己的下载描述 { var QR_OneDesc = document.getElementsByClassName("text-view")[0]; for(var o=0;o { if(window.location.href.indexOf("radiopage")!=-1) { AddDownload_Button(); clearInterval(TimeEndFlag); } }, 100);//寻找到raidopage页面就停止 })();