中移网大倍速播放

中移网大倍速播放!

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         中移网大倍速播放
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  中移网大倍速播放!
// @author       yuzibao
// @match        https://wangda.chinamobile.com/*
// @require      https://code.jquery.com/jquery-2.1.4.min.js
// @grant        none
// ==/UserScript==

(function () {
    'use strict';
    $(() => {

        $("body").append(`
        <div id='video_set' style="position:fixed;right:10px;top:10px;z-index:9999;background:#dedede">
            <input id="setPlay"  type="number" placeholder="请输入倍率" style="padding:10px 0 10px 14px;border:none; border-radius:48px;">
        </div>
        `)

        $(document).on('change', '#video_set #setPlay', function () {
            console.log(this.value);
            if (this.value <= 4) {
                document.querySelector("video").playbackRate = this.value;

            }
            else {
                alert("建议最大为4倍速")
            }
        })
    })
    // Your code here...
})();