|
Nov 16, 2007
|
Topic: Userscripts.org discussion / What am I missing? I am using a script for lynda.com I can tell that the mov is downloading, but I never see any "save as" dialog, and I can't locate the mov through search and find. What am I missing? I feel so dumb. Thanks so much.
|
|
Nov 16, 2007
|
Topic: Script development / Image replacement before original loading Not sure if I understand exactly what you're after... 1. Maybe you could remove the node and inserting another with your specs 2. Set an eventListener "DOMAttrModified" on the .src element and watch for (and block/replace) the address. |
|
Nov 16, 2007
|
Topic: Userscripts.org discussion / Deleting a comment.. I don't believe that this is possible yet, although after a quick search, I see that a ticket has been created for this to be implemented. |
|
Nov 16, 2007
|
Topic: Userscripts.org discussion / Deleting a comment.. How do I delete a comment, or edit it at least? I posted a comment in response to a question on a script and I had forgotten that the code I was using was on one line, so now the whole page is stretched out. Am I stuck with this for now? |
|
Nov 15, 2007
|
Topic: Script development / Switch to Gmail's old version Hi, I'm using a script (GmailRTL which add buttons to write from right to left http://userscripts.org/scripts/show/10023) that works only in Gmail's old version.
|
|
Nov 15, 2007
|
Topic: Script development / new user script - doesn't prompt for file To set your editor, what you need to do is open |
|
Nov 15, 2007
|
Topic: Script development / Image replacement before original loading Hi, I've written a rudimentry ad blocking script and it works great with the exceptions that the original ads are still downloaded, before being replaced. In my script I use the code element.src=whatever. My understanding was that the script was run before any links/dependancies were followed on the page? How can I change/correct this behavior? Thanks! |
|
Nov 15, 2007
|
Topic: Script development / new user script - doesn't prompt for file znerp - thanks! you said that when I select new user script it, it should popup my editor. it doesn't; how do I make it do that? it'd be nice to use that, as it will insert some text at the top. thanks! |
|
Nov 15, 2007
|
Topic: Ideas and script requests / Gmail - delete msg from msg list I want to be able to delete messages really quickly - without clicking to view them and without having to tick them for a dropdown selection. So can anyone knock something up to allow deletion right from the message list? And come to think of it - why not more actions - like applying labels? |
|
Nov 15, 2007
|
Topic: Userscripts.org discussion / Script Install Not Picking Up Metadata Do you have any idea on how to make the name 9 characters?
|
|
Nov 15, 2007
|
Topic: Userscripts.org discussion / Script Install Not Picking Up Metadata Well, 39 is still 30 more than it needs to be.
|
|
Nov 15, 2007
|
Topic: Userscripts.org discussion / Script Install Not Picking Up Metadata It appears the name is 39 characters long.
Edit:
Edit 2:
Edit 3:
|
|
Nov 15, 2007
|
Topic: Script development / GM_xmlhttpRequest referer not passing? No, GM_xmlhttpRequest does not send a referer header (or it is always blank). I assume this is a bug in Greasemonkey, or perhaps it's intentional. I tried searching for info on it but gave up. I did not see it listed here: http://greasemonkey.mozdev.org/bugs.html |
|
Nov 15, 2007
|
Topic: Userscripts.org discussion / Script Install Not Picking Up Metadata I'm sure the name is too long, @name becomes a files name. I would never use spaces myself, I think it's a bad idea. But try a much shorter name - I'm sure you don't want the Greasemonkey context menu being 80 characters wide anyway. |
|
Nov 15, 2007
|
Topic: Script development / new user script - doesn't prompt for file I'm not entirely sure what you're trying to do, but it sounds like you're clicking the option on Greasemonkey to write a new user script. If this is the case, then after entering those details it should pop up your editor (which you should have selected to be a text editor) with some lines of text at the top. You can then write a user script using this. This will then be saved in a folder in the Firefox profile directory. If however you're trying to install a userscript, all you need to do is ensure that Greasemonkey is enabled and then open the .user.js file using Firefox and Greasemonkey should automatically pick up on this and install the script. To answer your other question, putting * in the includes will mean that a script will run on every page (unless that page is in the excludes). |
|
Nov 15, 2007
|
Topic: Script development / new user script - doesn't prompt for file when i select "new user script" from popup in my firefox, I type in the information then hit OK. it doesn't prompt me to select the location of the .js file. am I doing something wrong? also, entering * into includes means it'll hit every site, right? thanks! |
|
Nov 14, 2007
|
Topic: Userscripts.org discussion / Script Install Not Picking Up Metadata Hi,
|
|
Nov 14, 2007
|
Topic: Userscripts.org discussion / Script download counter as rss feed Want to get updates of your script's download counter as an rss feed? Try this yahoo pipe:
The pipe is experimental. It might stop working, or it might not work for all scripts. If you find a script for which it doesn't work, please drop a comment here. Enjoy. |
|
Nov 14, 2007
|
Topic: Script development / GM_xmlhttpRequest referer not passing? Hey everyone,
I've done extensive googling but have not found a specific answer, it almost seems like firefox is dropping the referer header tag? What's the deal?
|
|
Nov 14, 2007
|
Topic: Ideas and script requests / ReloadEvery improvment? No one? Not even a simple thing to automatically press yes or something |
|
Nov 14, 2007
|
Topic: Ideas and script requests / Youtube RepeatButton A RepeatButton for Youtube...
|
|
Nov 14, 2007
|
Topic: Script development / onerror detection Tried every DOM event trap to do with nodes... nothing would fire. To be expected I suppose, as by the time GM attaches the listener the tree already exists and all we're getting is content. BTW, as an experiment tried.. window.addEventListener("load", init, false), which shifted the error from my xxx.user.js script to
I think we need a workaround for "onerror", as waiting for content loading is, in effect, going back to the bad old days when all we had was 'onload'. Also it just delays the onset of 'flicker'. Admittedly using some form of window.onerror=null; would require more defensive coding, but is that a bad thing? |
|
Nov 14, 2007
|
Topic: Ideas and script requests / Make text-only references into links Example of text-formatted reference [1]. Another [2].
[1] Footnote linked from above
|
|
Nov 14, 2007
|
Topic: Userscripts.org discussion / userscripts.org : edit/delete script tag I don't know about the tags, but to delete and entire script there is an option on the right under "Admin for script". |
|
Nov 14, 2007
|
Topic: Script development / Image replacement help Nvm I fixed it. I had a typo in the code. Thank you both for your help. I was practically pulling my hair out in frustration. |