9gag video controls on hover

Show video controls (gif) on mouse hover

目前為 2016-07-17 提交的版本,檢視 最新版本

// ==UserScript==
// @name           9gag video controls on hover
// @namespace      pl.srsbiz
// @description    Show video controls (gif) on mouse hover
// @include        *9gag.com*
// @grant          none
// @version 0.0.1.20160717090015
// ==/UserScript==

jQuery(document).ready(function(){
  $('#list-view-2,#individual-post').on('mouseenter', 'video', function(evt){
    $(this).prop('controls', true);
  }).on('mouseleave', 'video', function(evt){
    $(this).prop('controls', false);
  });
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址