Skip to content

Instantly share code, notes, and snippets.

@julbrs
Created February 10, 2017 18:32
Show Gist options
  • Save julbrs/578ce0f877f3b4b7d8362ae8728a1e2f to your computer and use it in GitHub Desktop.
Save julbrs/578ce0f877f3b4b7d8362ae8728a1e2f to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Bigger inputTextBox for BOE
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @match http://tampermonkey.net/index.php?version=4.2.7&ext=dhdg&updated=true
// @grant none
// @include http://sapb*dev.gbs*
// ==/UserScript==
(function() {
'use strict';
$('input.inputTextBox').width('800px');
// Your code here...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment