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

Using Javascript To Create A Keylistener Hotkey For Facebook Page "like"

I'm doing an art project for school where a user hugs an object and gets a 'liked' stat… Read more Using Javascript To Create A Keylistener Hotkey For Facebook Page "like"

How To Auto Trigger My Greasemonkey Script Every Time I Open A Page

this is my greasemonkey script. I want to auto-trigger it every time I open a reddit page. I want … Read more How To Auto Trigger My Greasemonkey Script Every Time I Open A Page

How To Switch To Raw Html In Contenteditable For In Place Editing?

I'm writing a user script to edit the whole html page: one of the features I will include would… Read more How To Switch To Raw Html In Contenteditable For In Place Editing?

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

Transferring Information Between Userscripts In Chrome

I need to have a function execute on a page in one tab when certain conditions are met in another t… Read more Transferring Information Between Userscripts In Chrome

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?

How To Change All Links In An Ajax Driven Page?

I have a userscript that modifies the href of all applicable links on an an IP-direct, Google searc… Read more How To Change All Links In An Ajax Driven Page?

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