Posts Tagged ‘GreaseMonkey’

Fix firefox/chrome password save and autofill on yahoo and other sites using autocomplete=off

Monday, November 4th, 2013

As the title says. The fix is a greasemonkey script for firefox (userscript for other browsers) which will simply turn the autocomplete=off to autocomplete=on and solving this part of the problem with yahoo sites and maybe others.
The fix is a fix of an lready existing script I made a few years back. Check it on http://www.ciuly.com/gm/

Related posts

Greasemonkey (user) scripts in Chrome

Friday, October 14th, 2011

After a little digging around I found that most (all?) my greasemonkey scripts will work in google chrome just well provided you will be using the Tander Monkey extension.

So .. go get it, install and enjoy.

Related posts

Multiple scripts update

Wednesday, April 7th, 2010

following are the modified scripts and their changes:

aa_all_common.user.js – fixed progress notification not being displayed on multiple concurrent executions, added debug support
aa_sp_common.user.js – fixed md5 hash not being correctly processed; fixed on every post callback when a postid is not found
aa_sp_mod_common.user.js – added support to ask for forumID in MoveTopic function
sp_warn_helper.user.js – added more include urls; added automatic explanation support; changed behavior to not clear suspension on warn; increased ban spammer execution wait to 25 seconds
sp_acrhive_pm.user.js – added more urls to include; changed behavior to archive only the messages older than 7 days and leaving at most 50 messages in folders

Related posts

Greasemonkey: warn helper and aa_common_all scripts have been updated

Sunday, August 2nd, 2009

I made a new fix in the ban_spammer function of the warn helper script, whichi required a modificaiton of the progress log functions in common_all.

Related posts

Common, archive PM and kill user GM scripts updated

Sunday, July 19th, 2009

I updated the common and archive PMs greasemonkey scripts by adding an option to ignore failure. This option is used by the kill user script.
Additionally, I fixed the posts deletion in the the kill user script and also added more progress logging.
The modifications were only tested on Opera. Do note that the progress logging is still UNTESTED on Internet Explorer.

Related posts

Major change in my greasemonkey scripts

Thursday, July 16th, 2009

I have added progress to most of the script. This beahves like “disableing’ the current page while the script runs and displaying sccript status/progress in a DIV.
I also fixed the firefox support for those who got some of the scripts while under development.

Also, as of 16.07.2009 The scripts now depend on GreaseMonkey API functions. Opera users will want to download this aagmfunction.js library. This is only needed by engines that do not support the GreaseMonkey API (GM_* functions). FireFox supports GreaseMonkey API.

Very important: INTERNET EXPLORER support has not been tested. At all. Feel free to feedback on IE 🙂

Related posts

Add JS 1.7/1.8 to GreaseMonkey

Friday, July 10th, 2009

This wil only work on FF 3.5+

Quoting:

After some more research, I’ve discovered mozilla bug #445873 which is exactly what is needed here. The fix is in the Mozilla 1.9.1 (Firefox 3.5) branch.

The change to Greasemonkey is extremely simple. Just change in greasemonkey.js : Components.utils.evalInSandbox(c, sandbox); to Components.utils.evalInSandbox(c, sandbox, “1.8”); or whatever version is desired. I just tested it works in Firefox 3.5beta4 (but it won’t work in Firefox 3 or earlier)

from: http://greasemonkey.devjavu.com/ticket/32#comment:9

Related posts

UPDATE: aa_all_common, sp_kill_user and sp_warn_helper

Sunday, June 14th, 2009

Added progress log to all_common base script and modified the other 2 mentioned scripts to use it.

Related posts

NEW: Archive all PMs on IPB

Sunday, June 14th, 2009

I just released a new greasemonkey script to archive all personal messages on IPB based forum, implemented for softpedia forum.

See all my scripts: http://www.ciuly.com/greasemonkey/

Direct download link (non-IE): http://www.ciuly.com/greasemonkey/sp_archive_pm.user.js

Do note that you also need the aa_all_common and aa_sp_common user scripts

Related posts