Reload page after clicking Add, Delete or Edit button on truyenwikidich.net
// ==UserScript==
// @name Auto Reload on Add/Delete/Edit Button
// @namespace Violentmonkey Scripts
// @version 1.0
// @license MIT
// @description Reload page after clicking Add, Delete or Edit button on truyenwikidich.net
// @match *://truyenwikidich.net/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function autoReload(btnId, delay = 250) {
const btn = document.querySelector(btnId);
if (btn) {
btn.addEventListener("click", function () {
setTimeout(() => {
location.reload();
}, delay);
});
}
}
// Xử lý cho các nút
autoReload("#btnAddName");
autoReload("#btnDelName");
autoReload("#btnEditName");
})();