9GAG add video controls

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

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==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();
    });

})();