Greasy Fork

Greasy Fork is available in English.

9GAG add video controls

try to take over the world, and add controls to videos on 9GAG.

当前为 2020-01-30 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         9GAG add video controls
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world, and add controls to videos on 9GAG.
// @author       Me
// @match        *://*9gag.com/
// @grant        none
// ==/UserScript==

(function() {
    var addControls = function() {
        var vids = document.getElementsByTagName("video");
        if(typeof vids !== 'undefined') {
            for(var i=0; i++; i<vids.length()){

                vids[i].setAttribute("controls", true);
                //
                // since everything is draggable on the page
                // the video slider can't be use properly
                // however I didn't find a way to fix this
                //
                //v.setAttribute("draggable", false)
                //v.addEventListener('mousedown', function() { this.parentNode.parentNode.setAttribute("draggable", false); });
                //v.addEventListener('mouseup', function() { this.parentNode.parentNode.setAttribute("draggable", true); });
                //v.setAttribute("ondragstart", "return false;")//=function(){return false}
            }
        }
    };

    var removeSoundControl = function(){
        // there is already a sound control on the default html5 controls so no point in having two
        var sounds = document.querySelectorAll(".sound-toggle");
        if(typeof sounds !== 'undefined'){
            for(var i=0; i++; i<sounds.length()){

                sounds[i].setAttribute("hidden", true);
            }
        }
    }

    var removeVideoTimeTag = function(){
        // there is already a time display on the default html5 controls so no point in having two
        var elems = document.querySelectorAll(".length");
        if(typeof elems !== 'undefined'){
            for(var i=0; i++; i<elems.length()){
                elems[i].setAttribute("hidden", true);
            }
        }
    }

    document.addEventListener("scroll", function(event) {
        addControls();
        removeSoundControl();
        removeVideoTimeTag();
    });

})();