Tagged Questions
0
votes
0answers
25 views
Personalized webportal in Firefox [closed]
I have been using iGoogle webportal for sometime now in my firefox as my home page. However with the upcoming closure of iGoogle I want to use this opportunity to create a personalized webportal in ...
1
vote
0answers
68 views
How to run javascript in Firefox mobile on a specific page, on pageload (similar to greasemonkey)
I'd like to run a Javascript snippet at the point where a specific page (e.g. facebook.com) has finished loading to click buttons automatically (e.g. submit form automatically).
So I'm looking for a ...
0
votes
0answers
36 views
Find out which keyboard shortcuts are bound on a webpage
I think a good webpage should be accessible without any use of a mouse. Yet such pages often lack the info what keyboard shortcuts are actually bound to what functions.
I'm looking for a tool to make ...
1
vote
3answers
252 views
Detecting Gmail attachment downloads
Is there a way to detect if a particular file that is being downloaded is a Gmail attachment?
I am looking for a way to write a Greasemonkey script which would help me organize the downloads, based on ...
0
votes
1answer
61 views
How to call a user javascript from a firefox plugin
I am very new to writing plugins for firefox. I am writing a plugin to intercept a URL protocol (I got it here: http://www.nexgenmedia.net/docs/protocol/) inside the plugin and then call some user ...
2
votes
1answer
113 views
Firefox: “Install Addon” button on own homepage
I created a greasemonkey script and want to offer an "Install Greasemonkey" button on my homepage. This button should install the firefox greasemonkey addon and spare users from the redirection over ...
2
votes
2answers
343 views
Accessing Variables from Greasemonkey to Page & vice versa
I have the following code in test.js which is run right before </body>:
alert('stovetop');
alert(greasy);
I have the following code in test.user.js:
(function () {
'use strict';
var ...
0
votes
1answer
70 views
Is there any addon or userscript or trick available to show/enable alexa ranks in/on google search results page with each search result?
is there any addon or userscript or trick available to show/enable alexa ranks in/on google search results page with each search result ?
available addons and uerscripts just let ranking on ...
1
vote
1answer
113 views
why would a userscript wrapped in a firefox addon be slower than the same script in greasemonkey?
I've been working on converting a Greasemonkey userscript into a Firefox addon. I'm using the page-mod module and it appears to work as expected.
EXCEPT that it is noticeably slower!
The first ...
0
votes
2answers
320 views
How do I create a Firefox addon from a Greasemonkey script?
I have a Greasemonkey script written in JavaScript, with a CSS component, and I'd like to publish them as a single Firefox addon. I've tried using the Addon Builder with the Addon SDK, but I haven't ...
2
votes
2answers
275 views
How do I publish a Greasemonkey script as a Firefox add-on?
I recently have worked on a script in Greasemonkey and would like to publish it as an add-on for Firefox. What is the easiest way to do this?
0
votes
2answers
55 views
Browser extension overriding browser functionality / url
Is it possible to create a browser extension which can change where the user is taken?
I.E. If the user puts in a certain prefix or symbol the browser will not attempt to go to the address ...
0
votes
1answer
148 views
Get value setted in GM_setValue from a custom Firefox extension
Do you know if a custom Firefox extension can read values setted calling GM_setValue() from a GraseMonkey user script?
3
votes
3answers
3k views
How to inject a JavaScript function to all web page using Firefox extension
I am developing a Firefox addon. What I want to do is to inject a custom JavaScript function.
i.e.
function foo() {..}
So all the pages can call the foo without define it first.
I have look from ...
3
votes
1answer
177 views
Firefox Extension File Structure
I'm working on updating a Greasemonkey compiler to package Firefox extensions. I think the original version was for Firefox version 3.6 and Greasemonkey version 0.7.20070607.0, and the source code is ...
0
votes
1answer
622 views
Greasemonkey autoclick script cracked by site update [closed]
Would appreciate your help with something.
I have an autoclick Greasemonkey for Firefox script that autoclicks a link on the site I work at when a job comes in. The script is this:
var BEEP_URL = ...
0
votes
0answers
128 views
Change secure http page content in a Firefox extension using Greasemonkey compiler
I'm building a Firefox extension that alters the page content of a few select websites and I'm using the Greasemonkey compiler to do this (http://diveintogreasemonkey.org/advanced/compiler.html).
The ...
0
votes
1answer
92 views
Pasting multiple files directly into a webpage with Input tag
I am rookie at web programming and I would like to know if the below is possible.
I want to be able to directly paste files into a webpage, which has the input tag, similar to the Outlook interface. ...
0
votes
1answer
133 views
Javascript on Greasemonkey, constraints and limiting factors compared to an addon in Firefox/Chrome?
Disclaimer: Newbie Javascript coder trying to use Greasemonkey; I've read the tutorials but do not understand enough of the parlance used so that I can focus in and learn what's needed. I'm hoping ...
2
votes
3answers
829 views
Getting request header sent by Flash
I am not sure if this is even possible but I guess it doesn't hurt to ask.
I have a script, either through Greasemonkey or as a Chrome extension, on a page that contains a Flash application. That ...
3
votes
2answers
499 views
Send Global keystroke using JavaScript in FireFox/Greasemonkey
I currently have a GM script that captures a keystroke and programmatically clicks an element on a webpage. However, this only works when the page/tab has focus. Is there any way to capture the ...
0
votes
2answers
58 views
Greasemonkey in newsfox
I have an annoying feed which I would like to do some url corrections in order to see inside newsfox bigger images.
Is it possible to configure a greasmonkey to load and be triggered when I view a ...
0
votes
1answer
145 views
Greasemonkey script compilation to add-on
What happens to the configuration values that are used inside a GM script with GM_setvalue and GM_getvalue when the script is compiled into an add-on? Where are they stored if Greasemonkey is not ...
3
votes
1answer
295 views
How do I authorize users (logged into my website) to use my firefox addon
I made a Firefox addon using the Greasemonkey script compiler at arantius.com/misc/greasemonkey/script-compiler. The addon gets data from my server and displays it on 3rd party websites. Now I want to ...
2
votes
1answer
550 views
Greasemonkey script in Firefox 4, want to change one line of code on webpage
Alright, I will try to make this is as simple as possible, without being too vague. I want to change one of line of code on a webpage in hopes of preventing a preview pane from appearing.
Original ...
1
vote
1answer
493 views
Is there any script like Greasemonkey that enables to read/write files?
Greasemonkey is a great addon but its main drawback is that its not possible to read/write files from hard disk. So, is there any other addon that can read/write files from hard disk??
5
votes
1answer
2k views
how to run greasemonkey script before the page content is displayed?
I am writing a plug-in for Firefox and using greasemonkey script to do that (I compile the user script using this tool http://arantius.com/misc/greasemonkey/script-compiler).
The issue is that the ...
2
votes
2answers
151 views
Is it posible to write greasemonkey script or add-on for firefox to automaticly add security exception?
Is it posible to write greasemonkey script or add-on for firefox to automaticly add security exception ?
I have plenty of dumb users and I really need to automate this for two of my intranet pages ...
3
votes
3answers
2k views
Get if browser is busy
I'm trying to find a way to get if the browser is currently busy from JavaScript. I'm looking at making a Firefox extension to inject a Boolean value or something if the current page is loading ...
1
vote
1answer
122 views
Calculating Drift/Browse Time
I am writing a greasemonkey script(requires plane javascript) which requires me to calculate the drift time/browsing time of a url i.e. i want to calculate the time for which an url was active. it ...
6
votes
3answers
1k views
Override default jQuery selector context
I'm trying to use jQuery inside a Firefox extension, and actually want to use jQuery to manipulate the DOM of the current page, as opposed to the context of the XUL file. Thus, I load jQuery in my XUL ...
1
vote
1answer
780 views
Local file access and compiling a greasemonkey script to xpi
I want to provide some functionality through an extension. This requires (read and execute) access to some resource files (an mp3 file, a swf file and two js).
I know user scripts cannot access ...
0
votes
1answer
295 views
Is there any greasemonkey script or addon that deletes the cookies for a particular domain everytime the tab is closed? [closed]
I don't like searching with Google while logged into Gmail because I don't want Google to have that data about me even if I have web history disabled. I've noticed that after signing out of Gmail they ...
4
votes
1answer
529 views
JavaScript - how Greasemonkey works
I read "Dive into Greasemonkey" (by Mark Pilgrim) written in 2005. It mentions that Greasemonkey wraps a user script in an anonymous function wrapper. Does Greasemonkey insert the wrapper into the ...
1
vote
1answer
188 views
Calling Greasemonkey user.js from a custom Firefox Extension
I'm modifying the existing GrabThemAll Firefox extension, which takes a list of URLs, loads them each into their own browser window, and takes a screenshot of the page.
I would also like to run a ...
0
votes
1answer
179 views
Write an add-on or greasemonkey script to “Ajaxify” webpages in Firefox?
I stumbled upon this add-on which "Ajaxifies" parts of its target website.
https://addons.mozilla.org/en-US/firefox/addon/51789
I have a similar need like this. I want only part of the webpage's ...
1
vote
2answers
317 views
turning on Greasemonkey live editing
On Firefox, I click Tools, Addons, Extensions, Greasemonkey, Options, select my user script, click Edit, change the source code, click save, reload one of the included pages, but the script is the ...
1
vote
1answer
319 views
Copying data across tabs
I got two different forms in two different tabs. One has data from our system and the other one is an interface of another, external, system in wich we need to copy data into (XML or API integration ...
8
votes
8answers
8k views
Greasemonkey @require jQuery not working “Component not available”
I've seen the other question on here about loading jQuery in a Greasemonkey. Having tried that method, with this require statement inside my ==UserScript== tags:
// @require ...
0
votes
1answer
412 views
How to embed audio file in HTML if it's being sent as octet-stream?
I'm trying to write a Greasemonkey script that will convert all "Play" links on a page to embedded audio (using the <embed> tag).
When I use a link that I get from a GMail attachment, it works ...
-2
votes
2answers
1k views
Firefox plugin or greasemonkey script to insert javascript
I am developing an app that analyzes the typing pattern of a user. To accomplish this, I need to change the HTML of the web page that the user is on (e.g. yahoo.com) - for all the text box items in ...
0
votes
2answers
649 views
Firefox extension to create a new icon or replace existing icon in the location/address bar
I want to create a Firefox extension that creates a new icon in the address bar or replaces the existing one with the one specified in the extension.
And then, add some javascript to display this ...
1
vote
1answer
493 views
Upload selected area as image to server
I want to create an application (Firefox extension ) which will grab a screen area, save as an image and upload to a server.
Here is my roadmap:
First I will create a greasemonkey user script which ...
11
votes
3answers
6k views
Debugging greasemonkey-like scripts
I'm writing javascript code that is read in as a string and executed via eval() by a firefox extension. Firebug does "see" my script so I am not able to use breakpoints, see objects, etc.
I am ...
