Add users count to people nav when on users page

https://github.com/thegreatmichael/canvas-people-count-badge

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         Add users count to people nav when on users page
// @namespace    http://canvas.vt.edu/
// @version      0.2
// @description  https://github.com/thegreatmichael/canvas-people-count-badge
// @author       Michael Stewart 
// @match        https://canvas.vt.edu/courses/*/users
// @grant        none
// ==/UserScript==
$(function () {
    var timerId = window.setInterval(function(){
  function addBadge () {
    if ($('table.roster tbody tr').length > 0) {
      $('nav li.section a.people').append('<span class="badge pull-right">'+$('table.roster tbody tr').length+'</span>');
    }
  }
  if ($._data(window).events.scroll && $._data(window).events.scroll.length > 0 && $('.paginatedLoadingIndicator').is(":visible"))  {
    $._data(window).events.scroll[0].handler();
  } else {
    addBadge();
  }
}, 250);
});