Recent posts by Neewb

Subscribe to Recent posts by Neewb 7 posts found

14 hours ago
Neewb 7 posts

Topic: Userscripts.org discussion / Script Categories?

My title/script lists to ban for the "Userscripts.org Obnoxious Scripts Remover" script is ridiculous. Instead of all the scripts going into one long feed, maybe it's time to start having categories for them? And it would have RSS feed for each.

Suggested Categories: Autopagers, Content Removal, Content Retrieval, Form Manipulation / Logins, Image Enhancements / Manipulation, et cetera...

 
Dec 2, 2007
Neewb 7 posts

Topic: Userscripts.org discussion / Sort by Digg style / vote system ?

*bump*

Wake up and look at this site, soooooo many retarded scripts cancering this site.

Google is going to the Digg system soon: http://www.google.com/experimental/a840e102.html

 
Nov 23, 2007
Neewb 7 posts

Topic: Ideas and script requests / Scan source for text

There are alternative ways, but they should make a real "responseHTML" function one day. Google it.

 
Sep 15, 2007
Neewb 7 posts

Topic: Userscripts.org discussion / Sort by Digg style / vote system ?

Instead of the userscripts sorted by time added on the homepage, how about a voting system (simple count of thumbs up or thumbs down for each script) to sort the added scripts in the last 24/48/72 hours?

I'm suggesting this for the site because there are many many crappy scripts that get submitted daily. You know what I'm talking about; especially those annoying "one-line getElementById" scripts.

 
Jul 2, 2007
Neewb 7 posts

Topic: Script development / Need help with Gmail username dropdown script

Yeah, good job. Thanks, I credited you guys on the script page.

 
Jul 1, 2007
Neewb 7 posts

Topic: Script development / Need help with Gmail username dropdown script

This script actually already works. I just need the created <select> element right next to the "Username:" text. Right now it shows a space and it looks ugly so its more of a cosmetic issue.</select>

 
Jul 1, 2007
Neewb 7 posts

Topic: Script development / Need help with Gmail username dropdown script

Hai, Im Neewb. This is a script Im working on for teh Gmail login page.

The first part removes the "username" textbox, and then the second part adds a dropdown with a couple of user IDs for the user to choose.

I just need the help on last line. Can't get it right next to the "Username: " text ??

var txtbx = document.getElementById('Email');
if (txtbx) {
	txtbx.parentNode.removeChild(txtbx);
}

var target = document.getElementById("Passwd");
if (target) {

	var dpdwn = document.createElement('select');
	dpdwn.setAttribute('name', 'Email');
	dpdwn.setAttribute('id', 'Email');
	dpdwn.setAttribute('class', 'gaia le val');
	dpdwn.setAttribute('size', '1');

	var opt = document.createElement('option');
	opt.setAttribute('value', 'john.doe');
	var optxt = document.createTextNode('john.doe');
	opt.appendChild(optxt);
	dpdwn.appendChild(opt);

	var opt = document.createElement('option');
	opt.setAttribute('value', 'jane.doe');
	var optxt = document.createTextNode('jane.doe');
	opt.appendChild(optxt);
	dpdwn.appendChild(opt);

	target.parentNode.insertBefore(dpdwn, target.previousSibling); // ? ? ? ? ?
}