Instagram video player with basic control of volume and skipping.

try to take over the world!

  1. // ==UserScript==
  2. // @name Instagram video player with basic control of volume and skipping.
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author Emerlender
  7. // @match https://www.instagram.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. console.log('Here you go enjoy your democracy at instagram with full control of player, Trump 2020 KEKW')
  14. var videoList = document.getElementsByTagName("video");
  15. setInterval(function(){
  16. if(videoList[0]){
  17. videoList[0].setAttribute("controls", "controls");
  18. videoList[0].style.zIndex = "1";
  19. }
  20. }, 1000);
  21. })();

QingJ © 2025

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