IndexOftoM3u

Transform Index Of webpage to an playable m3u file with media player

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         IndexOftoM3u
// @namespace    http://tampermonkey.net/
// @version      0.7
// @description  Transform Index Of webpage to an playable m3u file with media player
// @author       roondar
// @match        http*://*/*
// @grant        GM_registerMenuCommand
// @run-at document-start
// @require     http://cdn.jsdelivr.net/g/filesaver.js
// ==/UserScript==
if (document.title.match(/Index of/) ){
GM_registerMenuCommand('Download mp3ufile', tom3u);
}
function tom3u() {
        var table = document.getElementsByTagName('table')[0];
        var items = ['#EXTM3U\n\n'];
        for (var i = 3, row; row = table.rows[i]; i++) {
            var link = row.getElementsByTagName('a');
            if (link.length > 0){
                var url = link[0].href;
                var url2 = decodeURIComponent(url);

                items.push('#EXTINF:-1,'+url2.substring(url2.lastIndexOf('/')+1)+'\n');
                items.push(url+'\n\n');
            }
        }
       var blob = new Blob(items, {type: "audio/x-mpegurl; charset: UTF-8"});
       saveAs(blob, "play.m3u");
   
}