Greasy Fork is available in English.

Udemy - Percentage of course completed

See how much of the course you have done as a percentage of the course.

Version vom 05.06.2023. Aktuellste Version

  1. // ==UserScript==
  2. // @name Udemy - Percentage of course completed
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description See how much of the course you have done as a percentage of the course.
  6. // @author Facu
  7. // @license MIT
  8. // @match https://www.udemy.com/course/*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=udemy.com
  10. // @require https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  11. // @grant none
  12. // @run-at document-end
  13. // ==/UserScript==
  14.  
  15. function init() {
  16. document.body.addEventListener('click', function(e) {
  17. var target = e.target;
  18. if (!target.closest('.option') && !target.classList.contains('popper-module--popper--2BpLn')) {
  19. var container = document.querySelector('div[data-purpose="progress-popover-text"]');
  20.  
  21. var text = container.textContent;
  22. var text2 = text.split(" ");
  23.  
  24. var hechas = parseInt(text2[0]);
  25. var total = parseInt(text2[2]);
  26. var porcentaje = hechas * 100 / total;
  27.  
  28. var nuevoContenido = `<span class="ag_porcentaje"> ${Math.round(porcentaje)}%</span>`;
  29.  
  30. if ($(container).children().length === 0) {
  31. $(container).append(nuevoContenido);
  32. } else {
  33. $(container).children().last().replaceWith(nuevoContenido);
  34. }
  35.  
  36. }
  37. });
  38. }
  39.  
  40. $( document ).ready(function() {
  41. init()
  42. });