• Hey, guest user. Hope you're enjoying NeoGAF! Have you considered registering for an account? Come join us and add your take to the daily discourse.

Its 2009.... isn't it hightime the neogaf board

Status
Not open for further replies.

jax (old)

Banned
Its 2009.... isn't it hightime the neogaf board get

spoiler tags that you don't have to type yourself everytime? You can practically remove the insert email link code up there and swap it out for something really useful
 

StuBurns

Banned
There's an animated GIF showing someone press an imaginary button and it happening, brings a tear to my
eye
.
 

Veidt

Blasphemer who refuses to accept bagged milk as his personal savior
http://userscripts.org/scripts/show/50489
ngsi28.png


/thread.
 

flsh

Banned
The script doesn't work properly. To fix it go to Manage User Scripts in grease monkey and add "http://www.neogaf.com/forum/newreply.php?*" to the lists of sites this script is supposed to work with.
Next time you reply, it will work.
 

Windu

never heard about the cat, apparently
flsh said:
The script doesn't work properly. To fix it go to Manage User Scripts in grease monkey and add "http://www.neogaf.com/forum/newreply.php?*" to the lists of sites this script is supposed to work with.
Next time you reply, it will work.
my hero.
 

alr1ght

bish gets all the credit :)
hmm, script not working. :( edit:
had to add neogaf.com/* Included pages.
What do I have to change so when I click the button it leaves the cursor as is?

I do use this script to shrink images down to viewable size. Can't find the actual page though.
Code:
// ==UserScript==
// @name          neoGAF (vBulletin) Post Image Fit & Hover
// @namespace     http://userstyles.org
// @description	  Helps images remain a consistent "size" by re-sizing images to a fixed width; whenever one hovers over an image, the image becomes its original size. It also makes all the images display as a block element, which makes each image take a new line and results in less problems when resizing; however, images like similes are also affected, so they take up a new line
// @author        HofR
// @homepage      http://userstyles.org/styles/14636
// @include       http://www.neogaf.com/*
// @include       https://www.neogaf.com/*
// @include       http://*.www.neogaf.com/*
// @include       https://*.www.neogaf.com/*
// ==/UserScript==
(function() {
var css = "@namespace url(http://www.w3.org/1999/xhtml); /* IMG +ROLL */ div[id^=\"post_message_\"] img:not(.inlineimg) { max-width: 750px; display:block } div[id^=\"post_message_\"] img:not(.inlineimg):hover { max-width: 10000px; } /*END*/";
if (typeof GM_addStyle != "undefined") {
	GM_addStyle(css);
} else if (typeof addStyle != "undefined") {
	addStyle(css);
} else {
	var heads = document.getElementsByTagName("head");
	if (heads.length > 0) {
		var node = document.createElement("style");
		node.type = "text/css";
		node.appendChild(document.createTextNode(css));
		heads[0].appendChild(node); 
	}
}
})();
 

Ashhong

Member
this is awesome!

but i wish that the cursor would default to inside of the spoiler tags after you press the button.

anybody know how to change that?
 

YYZ

Junior Member
I think that greasemonky thing broke my reply page. I can't do the ctrl+b for bold and etc... I can't even click on them.


The new buttons work.


nm, it's just firefox. I turned off the script thing and it still doesn't work.
 

Ashhong

Member
YYZ said:
I think that greasemonky thing broke my reply page. I can't do the ctrl+b for bold and etc... I can't even click on them.


The new buttons work.


nm, it's just firefox. I turned off the script thing and it still doesn't work.

you could do just control b to bold it? :O btw works on my firefox
 

chapel

Banned
mario ate my burger said:
Ugh, why can't Chrome be this awesome!
Oh it can my friend. http://lifehacker.com/5180010/enable-user-scripts-in-google-chrome

Just follow the guide there, it tells you how to enable it, and where to put the files. It works for me great, though I don't use the script for spoilers as I don't need to spoiler much.

I do use a script that makes spoilers highlight with yellow on mouse over so I can read them easily without having to manually highlight them. Also one for images, resizes them so they don't break the page format and I can mouse over for full size.
 
Status
Not open for further replies.
Top Bottom