AVgle video add control bar

try to take over the world!

  1. // ==UserScript==
  2. // @name AVgle video add control bar
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://avgle.com/video/*
  8. // @grant none
  9. // @require http://code.jquery.com/jquery-1.12.4.min.js
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. $('#video-player_html5_api').attr('controls',true);
  16. })();