Bypasses the daily save limit
// ==UserScript==
// @name [Pixlr] Unlimited Saves UPDATED: (26/03/2024)
// @namespace NiceATC
// @match https://pixlr.com/*/*
// @grant none
// @version 1.0
// @author All Crdits to ClaytonTDM
// @description Bypasses the daily save limit
// @run-at document-start
// @license MIT
// ==/UserScript==
(() => {
// Define as configurações do usuário no armazenamento local
localStorage.setItem('user-settings', '{"lastNewsCheck":"1970-01-01T00:00:00Z"}');
let deletedModal = false;
window.addEventListener('load', function () {
// Define o nó alvo e a configuração do observador de mutação
let targetNode = document.body;
let config = { childList: true, subtree: true };
// Cria um observador de mutação
let observer = new MutationObserver(function (mutationsList, observer) {
for (let mutation of mutationsList) {
if (mutation.type === 'childList') {
// Verifica se há uma modal e a remove
let modal = document.querySelector('.modal');
if (modal && !deletedModal) {
setTimeout(() => {
modal.remove();
deletedModal = true;
}, 50);
}
}
}
});
// Inicia a observação
observer.observe(targetNode, config);
// Define um intervalo para atualizar o horário da última verificação de notícias no armazenamento local
setInterval(() => {
localStorage.setItem('user-settings', {"lastNewsCheck":"${new Date().toISOString()}"});
}, 500);
});
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址