Created
August 30, 2023 11:45
-
-
Save cadz94/a2d8d8d20a051b3e70b52acb7303e4aa to your computer and use it in GitHub Desktop.
basic NC trade notifier (DTI update, OWLS report), pop up only
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name NC trade notifier (DTI update, OWLS report) | |
// @version 1.0 | |
// @description basic popup on item transfer, that just reminds you to take a look at DTI and update it, and send a trade report, i always forget, this might annoy you if you do lots of non NC trading | |
// @author cadz | |
// @match https://www.neopets.com/items/transfer_list.phtml* | |
// ==/UserScript== | |
(function() { | |
// Function to show the popup | |
function showConfirmation() { | |
alert("Don't forget to update your Dress to Impress list and report your trade to OWLS if that was NC!"); | |
//if you do a C&P of then anything in the quote marks) | |
} | |
// Trigger the popup when the page loads, press ok and it goes away, no other actions | |
window.addEventListener('load', showConfirmation); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment