Skip to content Skip to sidebar Skip to footer
Showing posts with the label Userscripts

Modify New Elements When They Are Added

This is done by my userscript on page load: $('a.people').each(function (index, value) { … Read more Modify New Elements When They Are Added

Window.load Doesn't Fire Always On Chrome?

I have this userscript: // ==UserScript== // @name test // @namespace test // @descrip… Read more Window.load Doesn't Fire Always On Chrome?

Clicking A Button On A Page Using A Greasemonkey/userscript In Chrome

I'm going to be as absolutely verbose here as possible as I've run into a few solutions tha… Read more Clicking A Button On A Page Using A Greasemonkey/userscript In Chrome

How To Convert A Bookmarklet Into A Greasemonkey Userscript?

Is there a easy way to do this. And is there anything that needs to be changed due to differences i… Read more How To Convert A Bookmarklet Into A Greasemonkey Userscript?

Dom Click() Is Not Working On This Button

When I use method click() to click the button, the submission failed. But, when I use the mouse to … Read more Dom Click() Is Not Working On This Button

Programmatically Click On Label/radio Or Fire Event

I'm writing a userscript that injects a custom javascript into the head of a page. Easy peasy … Read more Programmatically Click On Label/radio Or Fire Event