小康在线播放器

看天下的视频!

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         小康在线播放器
// @namespace    http://www.jixiaokang.com
// @version      0.1
// @description  看天下的视频!
// @author       xkloveme
// @match        *://www.zuidazy4.com/*
// @match        *://www.zuidazy.com/*
// @match        *://www.zuidazy*.com/*
// @match        *://www.yongjiuzy1.com/*
// @match        *://www.yongjiuzy.com/*
// @match        *://www.156zy.me/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==
(function() {
    'use strict';
    console.log('小康在线播放器加载成功');
    for (let index = 0; index < document.all.length; index++) {
        const element = document.all[index];
        if(element.innerText.indexOf('.m3u8')>-1&&element.nodeName==='LI'){
            console.log(element);
            var buttonDiv = document.createElement("div");
            buttonDiv.appendChild(document.createTextNode("点击在线播放"))
            buttonDiv.style = "background-color: #f44336; border-radius: 10px; color: white; padding: 0px 15px;  margin: 10px;cursor:pointer;line-height: 33px;font-weight: 500; display:inline-block;";
            buttonDiv.onclick = function() {
                var str = element.innerText.substring(element.innerText.indexOf('//'),element.innerText.lastIndexOf('.m3u8'))+'.m3u8'
                console.log(element.innerText,33,element.innerText.substring(element.innerText.indexOf('//'),element.innerText.lastIndexOf('.m3u8'))+'.m3u8');
                var name =element.innerText.substring(0,element.innerText.indexOf('$http'))
                window.open("https://www.jixiaokang.com/whatisit/#/?url="+str+'&name='+name);
            };
            element.append(buttonDiv);
        }
    }
    // Your code here...
})();