PILI HLS

產生 HLS 連結

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         PILI HLS
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  產生 HLS 連結
// @author       阿皇仔
// @match        https://play.pili.com.tw/filmPlay/*
// @icon         https://www.google.com/s2/favicons?domain=pili.com.tw
// @grant        none
// @run-at       document-end
// ==/UserScript==

/* jshint esversion: 8 */
(async function() {
    'use strict';

    // Your code here...
    var fileId = document.URL.match(/https?:\/\/.+?\/filmPlay\/(.+)/).at(1);
    var idToken = document.cookie.match(/idToken=(.+?);/).at(1);
    var data = await fetch("https://play.pili.com.tw/api/file/getFilmInfo", {
        method: "POST",
        headers: {
            "content-type": "application/json;charset=utf-8",
            "idtoken": idToken
        },
        body: JSON.stringify({
            fileId: fileId,
            platform: "web"
        }),
        credentials: "include"
    }).then(response => {
        return response.json();
    }).then(result => {
        return result;
    });
    var fileUrl = data.fileUrl;
    var purpleBtn = document.querySelectorAll(".b-action > .btn.btn-purple.btn-round").item(0);
    var myBtn = document.createElement("a");
    myBtn.className = purpleBtn.className;
    myBtn.href = fileUrl;
    myBtn.innerText = "HLS下載";
    purpleBtn.parentNode.insertBefore(myBtn, purpleBtn);
})();