Recent posts by dob
|
Aug 29, 2008
|
Topic: Script development / Post form on Blog.ru
english, buddy :-) |
|
Aug 25, 2008
|
Topic: Userscripts.org discussion / Spam and malware Yeah, maybe you'll be captcha'd for your first two threads or so? |
|
Aug 25, 2008
|
Topic: Userscripts.org discussion / Spam and malware What's your position on Captchas, Jesse? |
|
Aug 23, 2008
|
Topic: Userscripts.org discussion / Spam vs. Topics 616:85 I'm assuming they have some sort of bot viewing the thread to keep it on the first page? |
|
Aug 23, 2008
|
Topic: Script development / GM_setValue problem... I once tried to write a script that automatically enables you to store objects and functions and so on with
|
|
Aug 8, 2008
|
Topic: Script development / HTTP methods You could use something like this to read out the methods and do something about it:
|
|
Aug 7, 2008
|
Topic: Script development / document.selection is undefined I like using this function, it also selects the text:
|
|
Aug 6, 2008
|
Topic: Script development / block infinite alerts Well apparently GM doesn't work on local files, I only tried it with that.
|
|
Aug 5, 2008
|
Topic: Script development / block infinite alerts Hello,
But it doesn't work for me.
Any ideas?
|
|
Aug 5, 2008
|
Topic: Userscripts.org discussion / More script metadata exposed Shouldn't that go without saying?
|
|
Aug 5, 2008
|
Topic: Script development / calling javascript injected into page body Guys, you might want to look into unsafeWindow on the Greasespot Wiki.
|
|
Aug 3, 2008
|
Topic: Userscripts.org discussion / Spam and malware Spammer: http://userscripts.org/users/61710 |
|
Aug 2, 2008
|
Topic: Ideas and script requests / adding a search button to google That's very well possible.
|
|
Aug 1, 2008
|
Topic: Script development / questions about document and automatic script disabling The way I do it:
GM_xmlhttpRequest({
method: "get",
url: "site.php",
onload: function(t) {
var text = e.responseText, parser = new DOMParser();
var html = parser.parseFromString(text, "text/xml");
alert(html.getElementsByTagName("div")[0].textContent);
}
});
|
|
Jul 29, 2008
|
Topic: Userscripts.org discussion / Disappeared topic Maybe they'd like you post your suggestion on uservoice.com. |
|
Jul 28, 2008
|
Topic: Script development / How to click the login button? I'd go with the first one, xpath is not implemented in IE, just in case there are any IE users. |
|
Jul 28, 2008
|
Topic: Script development / Getting previous node
|
|
Jul 23, 2008
|
Topic: Script development / Facebook Ad AJAX update killer Just for the record:
|
|
Jul 23, 2008
|
Topic: Script development / How to use variables set by inline js
Works with Variables, Functions, Objects and so on. |
|
Jul 22, 2008
|
Topic: Script development / Help with smiley replacement? Mikado used to have a script for that, but it seems offline.
|
|
Jul 22, 2008
|
Topic: Script development / Facebook Ad AJAX update killer Let's say your script has the function
function removeads() {
// code
}
removeads();
document.addEventListener("DOMNodeInserted", removeads, true);
But since there seems to be a bug, just do this:
function removeads() {
// code
}
window.setTimeout(function() {
removeads();
}, 3000);
That means that your code and the function will be executed after 3 seconds. |
|
Jul 21, 2008
|
Topic: Script development / xpath Thank you. :) |
|
Jul 20, 2008
|
Topic: Script development / xpath Hello everyone, I'd love some help with an xpath problem. This is the code I am working with:
It's just shortened, the actual code can be found here, and in action here And this is my XPath so far:
I use the $x function.
Thanks! :) |
|
Jul 17, 2008
|
Topic: Script development / How can I change all links style? Check out stylish addon. |
|
Jul 16, 2008
|
Topic: Script development / how can I destroy all iframes? Exactly, Firefox knows how to handle forEach and HTMLCollections. |

