Cmanga Popup Remover

Tự động loại bỏ popup và hiển thị nội dung trên các trang web có tên miền cmanga

// ==UserScript==
// @name         Cmanga Popup Remover
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Tự động loại bỏ popup và hiển thị nội dung trên các trang web có tên miền cmanga
// @author       You
// @match        https://cmangax2.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    setInterval(function() {
        $(".popup_content").attr("style", "display: none !important;");
        $(".chapter_content").attr("style", "opacity: 1 !important;");
    }, 2000);
})();