Greasy Fork

Greasy Fork is available in English.

机核网 GADIO 时间轴操作优化

增加时间轴鼠标滚轮控制(新版web页面时间轴文字说明官方已经支持选中复制了)

目前为 2019-07-19 提交的版本,查看 最新版本

// ==UserScript==
// @name           机核网 GADIO 时间轴操作优化
// @namespace  http://zhangbohun.github.io/
// @version        0.2
// @description  增加时间轴鼠标滚轮控制(新版web页面时间轴文字说明官方已经支持选中复制了)
// @author         zhangbohun
// @match         *://www.gcores.com/radios/*
// @grant          none
// @run-at 	     document-end
// ==/UserScript==
'use strict';

window.onload = function () {
    //增加时间轴鼠标滚轮控制
    document.querySelector(".gpf_body").addEventListener("mousewheel", function (event) {
        if (event.wheelDelta > 0) {
            document.querySelector(".gpf_playingTimeline_l a").click();
        }
        else {
            document.querySelector(".gpf_playingTimeline_r a").click();
        }
        event.preventDefault();//阻止页面滚动
    }, true)
};