Skip to content

Instantly share code, notes, and snippets.

@breadbyte
Last active November 30, 2020 06:25
Show Gist options
  • Save breadbyte/e78bfbe1658ea509e30909b4afc8c56f to your computer and use it in GitHub Desktop.
Save breadbyte/e78bfbe1658ea509e30909b4afc8c56f to your computer and use it in GitHub Desktop.
TipidPC Send To Outbox Autochecker
// ==UserScript==
// @name TipidPC Send To Outbox Checkbox
// @version 1
// @description Checks the "Send To Outbox" checkbox automatically.
// @author breadbyte
// @match https://tipidpc.com/newmessage.php*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelector("#save").checked = true;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment