Hamro Csit

12/5/2024, 4:16:52 PM

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name        Hamro Csit
// @namespace   Violentmonkey Scripts
// @match       https://*.hamrocsit.com/*
// @grant       none
// @version     1.0
// @author      Sush
// @description 12/5/2024, 4:16:52 PM
// @license GPL-3.0-or-later
// ==/UserScript==

  /* Enables Premium */
  tucsitnotes.hassubscription=true

  /* Removes junk */
  let styles = `
    #credential_picker_container,
    .messanger_floating,
    .list-account-info,
    .style-switcher,

    .menu-item[style="position:relative;"],

    .docs-overview .row .col-md-3,
    .category-area .col-md-2,
    .course-single .col-md-3:not(.question-bank-sidebar),

    .feature-area,
    .step-area,
    .cta-area {
      display: none !important;
    }
    .row {
      justify-content: center !important;
    }

    .course-single-tab .nav .nav-link,
    .question-bank-sidebar {
      display: block !important;
      color: white !important;
    }
  `
  let styleSheet = document.createElement("style")
  styleSheet.innerHTML = styles
  document.head.appendChild(styleSheet)

  $('.question-bank-sidebar').show()

  /* Enables dark theme */
  toggleTheme(true)

  $('#qnBankAnswersModal').on('click', () => {
    const btn = document.querySelector('.btn-close')
    const clickEvent = new MouseEvent("click", {
      "view": window,

    });
    btn.dispatchEvent(clickEvent)
  })

  /* Removes banner ads */
  const allImg = document.getElementsByTagName('img')
  console.log(allImg)

  for (var img of allImg) {
    if (img.src.includes('.gif?') || img.src.endsWith('.gif')) {
      $(img).parent().hide()
    }
  }