1
vote
2answers
34 views
Can a greasemonkey script launch an application under windows xp
I would like to allow some users to be able to launch a voip application from a web page, ie in response to clicking a button to dial the telephone number for the record they are l …
0
votes
2answers
34 views
Can I build an addin for Gmail?
Is there a way I can create an addin for my Gmail account? Is GreaseMonkey the only real way?
I use Gmail for customer service, and I'd like to create a tool that looks up the cus …
1
vote
3answers
46 views
Is nested XMLHttpRequests with multiple closures a good idea?
I have a Greasemonkey script which operates on a search results page at a video site. The function of the script is to take a javascript link that opens a new window with a flash …
3
votes
2answers
24 views
Greasemonkey guide for Experienced Javascript Developers?
I really really want to write a GreaseMonkey extension.
I have written a lot of javascript in my life.
I am looking for a guide that will tell me quickly, what exactly the Grease …
0
votes
1answer
28 views
Cloning a css style from a style sheet using jquery/greasemonkey
I am writing a Greasemonkey script using jquery, and I want to add information from multiple pages, but the object i want to load is a div with an Id, is there any way I can retrie …
0
votes
4answers
94 views
Closure in Javascript
I have 100 elements with ids divNum0,...,divNum99. Each when clicked should call doTask with the right parameter.
The code below unfortunately does not close i, and hence doTask i …
1
vote
1answer
47 views
Problem with jQuery data() function in GreaseMonkey
I'm trying to use jQuery's data() function to store and retrieve data on an element. I want to retrieve the data stored in a textarea whenever the user enters the space bar1. How …
0
votes
1answer
64 views
Replacing text only within the within the specified node, and not within child nodes.
I found a GreaseMonkey script on Userscripts which corrects spelling and some grammar which I'm trying to improve for use on Reddit etc. I've had some help from there improving it …
1
vote
1answer
18 views
GreaseMonkey onclick binding
When I write a GreaseMonkey script, if I create a div and set onclick to alert it works:
var btn = document.createElement('div');
btn.setAttribute('onclick',"alert('clicked!');") …
0
votes
1answer
13 views
Execute Function On First Run Of Greasemonkey Script
How can I run a function upon the first run of a greasemonkey script?
0
votes
3answers
22 views
Insert link with text from another link greasemonkey
What I want to do is insert a link and img for every thread of this forum I use. The href of the link should be based on the href of a child of the element.
Here is a partial view …
0
votes
1answer
27 views
Greasemonkey how to apply a CSS rule only for @media print?
I'm using Greasemonkey and JQuerys #css method to add css styles to a page. Script so far:
// ==UserScript==
// @name www.al-anon.dk Remove inline scroll so that page co …
1
vote
1answer
30 views
Using greasemonkey and/or gmail API to reduce width of mail pane.
Hi there. I'm on my way to creating a greasemonkey script for gmail.
The first thing I want to play with is reducing the size of 'main' pane. This is where either the list of ema …
0
votes
4answers
103 views
JavaScript iframe busting
In certain conditions, I have a web page that gets opened in an iframe. When it's loaded into that iframe, I need it to set the window location to a resource to download a file (al …
0
votes
2answers
52 views
Greasemonkey Storage
Is there any limit on how much data can be stored using GM_setValue?
