Log In

JQBot Chrome Extension

JQBot is a chrome extension we built to save us some time.

It allows you to define some custom jquery code and have it automatically executed against a specific url every time you visit it.

For example, if every time you go to a particular website, you'd like the background colour to be blue, you could define some code similar to:

$('body').css('background-color','blue');

A more useful example would be this; Every time you visit a website you have to enter the number "3" into a textbox and click a button, you could use the following code snippet:

$('input#myTextBox').val('3');
$('input[type=submit]').click(); 

This plugin implements jquery v1.11.0.

For more information about JQuery and it's uses visit :

Get JQBot from the Google Chrome Store

WARNING!!
Don't be silly enough to use this to try and automatically log yourself into your online banking system.