Skip to content

Instantly share code, notes, and snippets.

@breadbyte
Created November 30, 2020 06:34
Show Gist options
  • Save breadbyte/e2dc44074122b1e27be1a09dd911aa08 to your computer and use it in GitHub Desktop.
Save breadbyte/e2dc44074122b1e27be1a09dd911aa08 to your computer and use it in GitHub Desktop.
TipidPC Outbox Sent To
// ==UserScript==
// @name TipidPC Outbox Sent To
// @version 1
// @description Replaces "Sent By" to "Sent To" on outbox messages.
// @author breadbyte
// @match https://tipidpc.com/readmessage.php?view=outbox*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelector("#messageinfo").innerHTML = document.querySelector("#messageinfo").innerHTML.replaceAll("sent by", "sent to");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment