ÖBA

Emrah was here

  1. // ==UserScript==
  2. // @name ÖBA
  3. // @namespace oba
  4. // @version 1.0
  5. // @description Emrah was here
  6. // @author EmRaH - ekaraman89@hotmail.com
  7. // @match https://www.oba.gov.tr/egitim/oynatma/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=gov.tr
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. $( document ).ready(function() {
  15. setInterval(function () {
  16. console.log('running');
  17. var link = $('.progress-check-icon').last().parent().parent().next().find('a')[0];
  18. var currentUrl = window.location.href;
  19. var videoUrl = $(link).prop('href')
  20. if(currentUrl == videoUrl)
  21. {
  22.  
  23. var video = $('#video_html5_api')[0];
  24. console.log($($('#video_html5_api')[0]).prop('muted'));
  25. $($('#video_html5_api')[0]).prop('muted','muted')
  26. console.log($($('#video_html5_api')[0]).prop('muted'));
  27. if(video !=undefined)
  28. $('#video_html5_api')[0].play()
  29. }
  30. else{
  31. $(link)[0].click()
  32. }
  33.  
  34. }, 1000);
  35. });
  36. })();

QingJ © 2025

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