FreeCodeCamp No Pop-up

Remove all popup in FreeCodeCamp

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name            FreeCodeCamp No Pop-up
// @name:vi         FreeCodeCamp Không Phiền Phức
// @namespace       https://lelinhtinh.github.io
// @description     Remove all popup in FreeCodeCamp
// @description:vi  Xóa các bảng xác nhận trên FreeCodeCamp
// @version         1.0.0
// @icon            https://www.freecodecamp.org/icons/icon-72x72.png
// @author          lelinhtinh
// @oujs:author     baivong
// @license         MIT; https://baivong.mit-license.org/license.txt
// @match           https://www.freecodecamp.org/learn/*
// @require         https://greasemonkey.github.io/gm4-polyfill/gm4-polyfill.js?v=a834d46
// @noframes
// @supportURL      https://github.com/lelinhtinh/Userscript/issues
// @grant           GM_addStyle
// ==/UserScript==

GM_addStyle(`[role="dialog"]:not([class]) {
  visibility: hidden;
  pointer-events: none;
}`);

const targetNode = document.body;
const observerOptions = {
  childList: false,
  attributes: true,
};
const removePopup = () => {
  const $submit = document.querySelector('.modal button:not(.close,.confirm-donation-btn)');
  if ($submit) $submit.click();
};
const watchBody = (mutationList, observer) => {
  mutationList.forEach((mutation) => {
    if (mutation.type !== 'attributes') return;
    if (mutation.attributeName === 'class' && targetNode.classList.contains('modal-open')) removePopup();
  });
};
const observer = new MutationObserver(removePopup);
observer.observe(targetNode, observerOptions);