Skip to content

Instantly share code, notes, and snippets.

@NeWbLt123
Created July 29, 2020 22:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NeWbLt123/57ecf72dc8a87252880433b2766552d9 to your computer and use it in GitHub Desktop.
Save NeWbLt123/57ecf72dc8a87252880433b2766552d9 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Ebay listing helper
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://bulksell.ebay.ca/**
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementById("upc").focus();
document.getElementById("upc").value = '';
setInterval(function() {
document.getElementById("editpane_subtitle").setAttribute("disabled", "disabled");
document.getElementById("bold").setAttribute("disabled", "disabled");
}, 2000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment