My 115

115

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         My 115
// @namespace    http://tampermonkey.net/
// @version      0.14
// @description  115
// @author       You



// @include     http*://115.com/*

// @icon         https://www.google.com/s2/favicons?domain=115.com
// @grant        none
// ==/UserScript==
function addJQuery(callback) {
    var script = document.createElement("script");
    script.setAttribute("src", "//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js");
    script.addEventListener('load', function() {
        var script = document.createElement("script");
        script.textContent = "window.jQ=jQuery.noConflict(true);(" + callback.toString() + ")();";
        document.body.appendChild(script);
    }, false);
    document.body.appendChild(script);
}

function main(){
    const regex = /((?:(?!(boy|oy|hjd|jd|com|om|SIS|IS|sis)))[a-zA-Z]{2,5})-?\d{3,4}/g;
    const subtitle_r = /((?:(?!(boy|oy|hjd|jd|com|om|SIS|IS)))[a-zA-Z]{2,5})-?\d{3,4}(-|_)?(ch|C|c)/g;
    function mainBtnClick() {
        var items = $(".name")
           items.each((i, video) => {
               var texts = $(video).find("span")
               var t = texts.text().toUpperCase()
               const found = t.match(regex);
               const sub = t.match(subtitle_r)
               if (found && found.length === 1) {
                   var code = found[0]
                   var temp = code.match(/[a-zA-Z]+|\d+/g)
                   code = temp[0] + temp[1]
                   $.ajax({url: "https://www.mingren.life/av/" + code, success: (result) => {
                     if (result.DownloadMovies.length > 0){
                        // already download
                        if (result.DownloadMovies[0].subtitle == 0 && sub) {
                          $(texts).css("color", "purple")
                        } else {
                          $(texts).css("color", "blue")
                        }
                     } else {
                        $(texts).css("color", "red")
                     }
                   }})
               }


           })
    }


    $(document).ready(function(){
        'use strict';
        let body = $("body");
        let btn = $("<button style='z-index:100;position: absolute; left: 100px; top: 200px' id='main-btn-addon'>Start</button>")
        body.append(btn)

           $('#main-btn-addon').click(mainBtnClick)

        console.log(body)
    });
}
// load jQuery and execute the main function
addJQuery(main);