Tagged Questions

Userscripts are code meant to customize an action, layout, or experience in a given environment on a per-user basis. This primarily refers to Javascript extensions for the Google Chrome and Opera browsers.

learn more… | top users | synonyms (2)

39
votes
8answers
10k views

How can I use jQuery in Greasemonkey scripts in Google Chrome?

As some of you may know, Google Chrome has put some severe limitation on Greasemonkey scripts. Chromium does not support @require, @resource, unsafeWindow, GM_registerMenuCommand, GM_setValue, or ...
11
votes
2answers
344 views

How can I inject a user script on iOS?

I'm working on Fahrii, which is, essentially, a userscript enabled mobile browser. At the moment, I'm having trouble invoking the scripts on a web page that's loaded into a UIWebView. I'd like to keep ...
9
votes
1answer
3k views

Manually adding a Userscript to Google Chrome

Instead of "installing" User-Scripts I found many tutorials on the web to add it manually. All of them told me to do the same steps: Make the directory ...
9
votes
7answers
2k views

Why doesn't jQuery work in Chrome user scripts (Greasemonkey)?

I'm unable to get this user script to work in Google Chrome. // ==UserScript== // @name voip // @namespace 1 // @description voip // @include * // @require ...
9
votes
3answers
852 views

How to set Chrome's user script version number

Edit: The bug that caused this problem has been fixed. The @version tag now works in the stable release. See Issue 30760 Hey. I've been wondering how I might set the version number displayed for ...
9
votes
3answers
3k views

User Script Debugging in Google Chrome

What's the best way to debug custom User Scripts (aka Greasemonkey) in Chrome? Is there a way to enable User Script tracking in the Developer Tools?
8
votes
2answers
360 views

Is it possible to determine if Chrome is in incognito mode via a user-script?

I asked this question before but didn't make it clear that I meant in user script, not in JavaScript from a webpage.So I'll be more clear now. Is it possible to determine if Google Chrome is in ...
7
votes
2answers
2k views

UserScripts & Greasemonkey: calling a website's JavaScript functions

I'm creating a UserScript extension for Firefox & Chrome and I'm trying to use some of the code in the website's JavaScript, e.g.: function: myFunction(){ return Grooveshark.playNextSong(); ...
6
votes
1answer
242 views

Is it possible to keep single-line comments? (Writing greasemonkey/userscripts in CoffeeScript)

I've noticed that when compiling CoffeeScript, none of the single-line comments are retained. This is problematic as I'm trying to write a greasemonkey/userscript in CoffeeScript, and they rely on ...
6
votes
2answers
948 views

using jQuery in Safari Extension

I am trying to make a simple Safari 5 Extension that just injects a custom javascript. Any ideas how can I make use of jQuery in this custom script, please? I only know it's possible, because it is ...
5
votes
2answers
1k views

Accessing iframes from a Chrome content-script extension

I'm writing a Chrome extension that needs to alter a popular web app when loaded. Unfortunately, most of the UI of that web app is rendered inside an iframe, and although the address of that iframe ...
5
votes
5answers
957 views

Stop an input field in a form from being submitted

I'm writing some javascript (a greasemonkey/userscript) that will insert some input fields into a form on a website. The thing is, I don't want those input fields to affect the form in any way, I ...
4
votes
2answers
139 views

XMLHttpRequest for JSON file works perfectly in Chrome, but not in Firefox

I've narrowed my problem area down to the function below. It's part of a userscript I'm writing. It works perfectly in Chrome, but doesn't work at all in Firefox/Greasemonkey. I've tinkered with it ...
4
votes
1answer
192 views

Are Chrome user-scripts separated from the global namespace like Greasemonkey scripts?

I know Greasemonkey scripts are automatically wrapped in anonymous functions isolated in some way in order to prevent them conflicting with scripts in the page. Does the same happen with Chrome ...
4
votes
1answer
2k views

Facebook Emotions

This code is from Facebook Chat Emoticons Bar Grease Monkey UserScript ImagesURL = HttpsOn?'https://s-static.ak.fbcdn.net/images/':'http://static.ak.fbcdn.net/images/'; emotsInfo = [':)', ':(', ...
4
votes
2answers
382 views

jQuery queue in Chrome userscript with popups?

I would like to ask if it is possible to build Chrome or Greasemonkey script witch could open all popups in queue. So far i have 2 seperate scripts for this, but that is not working well since popups ...
4
votes
1answer
191 views

Accessing userscript variables from the Google Chrome console

For debugging purposes, is it possible to access userscript variables from the console in Google Chrome?
4
votes
3answers
479 views

Removing an anonymous event listener

Is there anyway to remove an event listener added like this: element.addEventListener(event, function(){/* do work here */}, false); without replacing the element?
4
votes
1answer
473 views

How can I run a user script before any inline scripts run on a webpage?

I want to make a greasemonkey type script for firefox that runs before the scripts on the page. Greasemonkey scripts run after scripts on the page, so that won't work. The reason I need this is ...
3
votes
2answers
100 views

Can a website know if I am running a userscript?

Can, for example, Facebook.com run a version control script on my browser and find out if I am running altered HTML code with the use of a script? Could that be done with a script that can read the ...
3
votes
2answers
292 views

Looking for Greasemonkey Scriptwriting basics/tutorial

I have been searching the internet for days now trying to find out how to write my own script, one more complicated than the "Hello World" script. I understand for the most part how to find specific ...
3
votes
2answers
1k views

Firefox Or JavaScript, count the DOM

I'm sure this is simple but I have no idea how to do it. How do i count the amount of DOM elements in my HTML page? I wanted to do this in a userscript or bookmarklet but i have no idea how to start!
3
votes
2answers
898 views

Cross-origin XHR from a user script in Google Chrome

Has anybody had any luck performing cross origin XHRs from a user script in Google Chrome? The requests go through to the server (I can see them in the logs) but, the readystatechanged event is never ...
2
votes
2answers
81 views

Place div over Flash object with userscript

I have a script which adds a div to a page containing a full-screen Flash object, like this: var myDiv= document.createElement("div"); myDiv.style.background = "red"; myDiv.style.width = "30px"; ...
2
votes
1answer
44 views

Script to Change italic font into a standard font in JS

I'm using Chrome and on Twitter it doesn't show the Arabic font while in italic, especially in the Bio section on the person's profile. So I inspected the bio element and I found out that if I ...
2
votes
1answer
101 views

Adding jQuery UI to Greasemonkey script fails with external CSS file

I'm trying to add jquery-ui to a Greasemonkey script. my full code: test.user.js: // ==UserScript== // @name Test // @namespace rajat.khandelwal // @description Test script // ...
2
votes
2answers
59 views

“Uncaught SyntaxError: Unexpected token (” but there is no error

I'm authoring a simple userscript that will give the backspace button navigation control like in windows (specifically this is for linux users) for Chromium browser. This script was working, then I ...
2
votes
5answers
100 views

How to get the src of an image on mouseover in a userscript

I'm new to the site and also to JavaScript. I started writing this little UserScript as a start. Basically what it does is, when you hover your mouse pointer over a thumbnail image, if enlarges that ...
2
votes
2answers
58 views

Userscript in Chrome, Cross-Origin communication

Chrome has its own Greasemonkey, anyway it has many limit. One of them is that its xmlhttprequest doen't support Cross-Origin. So is there any way to make it works? thanks
2
votes
2answers
91 views

What to do when $('#div').trigger('click'); doesn't trigger (Closed, lost interest)

I'm writing a userscript that injects a custom javascript into the head of a page. Easy peasy // ==UserScript== // @name *** (BLOCKED DUE TO NDA) // @namespace *** (BLOCKED DUE TO NDA) // ...
2
votes
1answer
103 views

User Script for Displaying Tooltip is not working

I have developed the following user script which will show the html element under mouse on mouseover in the tooltip. Earlier I was using the same script as a content script in a Chrome Extension and ...
2
votes
2answers
74 views

Javascript - accessing elements from an unopened page

My question is somewhat difficult to explain. What I am trying to do is, I have a button on a certain page. When I press that button, I must be able to access elements of a form that is located on ...
2
votes
2answers
307 views

xmlhttprequest - exception 101 error

requrl_1 = "http://www.example.com/index.php"; requrl_2 = "http://www.example.com/redirect.php"; when I request "requrl_1", there is no problem. I'm getting response. "index.php" is not a redirector ...
2
votes
1answer
155 views

Chrome Userscript (Greasemonkey) - Stop Gmail from sending an email

I am writing a Chrome Userscript (Greasemonkey) extension to display a confirmation dialog when the user clicks on Gmail's Send button (in the compose window etc.). I have manged to attach to the ...
2
votes
1answer
145 views

Can you make a div draggable using $.ui.draggable()?

I'm having trouble getting $('#id').draggable() to work when I insert it into an html page using my Greasemonkey user script. Is there a way to make something draggable using $.ui.draggable() instead? ...
2
votes
1answer
328 views

How to trigger the listen button on the Google-translate page using javascript?

I want to add shortcuts to the Google-translate page. Press Altc or Esc to clear the textarea; press Altj to pronounce. This is the current user script: userscripts.org/scripts/review/110928 I do ...
2
votes
3answers
78 views

Use a userscript as a regular javascript?

If I have a userscript that I've found online, and I'd like to incorporate it into a website as a normal javascript (i.e. not userscript), how can I do that? This seems like it would be something ...
2
votes
1answer
124 views

How do I trigger the action on this element on plus.google.com via a userscript using jQuery?

I'm using Google+ quite heavily and one thing I find myself doing extremely frequently is clicking the 'More' button in the left-hand sidebar to access my circles that are hidden from view. I'm trying ...
2
votes
3answers
95 views

How do I remove links from a page via JavaScript?

I want to write a user script for my browsers (Opera, Chromium) that removes links containing predefined keywords. For example, a link <a href="foo">bar</a> should simply vanish from the ...
2
votes
2answers
114 views

is it possible to addEventListener to a table to check for new info in that table?

i have this greasemonkey/user.js script written for some website. that website has a table which outputs info every now and then; it does so by adding a new tablerow with the info. at the moment i ...
2
votes
1answer
111 views

How to remove portions of Web page title using Javascript

I'm new at this Javascript stuff, so please excuse my basic question. I'm trying to find a way to remove some portion of a web page title using Javascript in a userscript. Take for example the title ...
2
votes
1answer
311 views

userscript - Add item to right-click menu

I am writing a userscript for Greasemonkey and want to add an item to right click context menu. If I'm not mistaken, this function is called window.addEventListener("contextmenu", ...). Can you give ...
2
votes
2answers
103 views

How to override a site's jQuery function?

Specifically the delayedAutoNext function on the homepage of pitchfork.com that rotates the pitchfork.tv images — I want to change the setTimeout value to a different number. How can I do this with a ...
2
votes
1answer
161 views

Null array values in Javascript

everyone. I wrote a userscript about a year ago that changes the colors of badge borders on kongregate.com based upon the difficulty of the badge. They have since added new features, and now the ...
2
votes
3answers
352 views

Make my userscript wait for other scripts to load

[Edit: I'm replacing the original, confusing question with a simplified example demonstrating the problem.] Background I'm trying to write a userscript which will run in Chrome. This script needs to ...
2
votes
2answers
230 views

Problem with regexp in userscript for chrome

This might be a noob question, but I have tried to find an answere here and on other sites and I have still not find the answere. At least not so that I understand enough to fix the problem. This is ...
2
votes
1answer
994 views

Google Chrome UserScript - Working with other windows and tied-up hands

I've got a little problem with UserScripts in Google Chrome, to be precise with getting to the object window of an iframe. Very doable via the Google Chrome console, very impossible via the UserScript ...
2
votes
3answers
296 views

Run Code After Function is Finished OR DIV Appears

I have written a Userscript for Facebook and it groups similar notifications together. Now, using just a static HTML page with old notifications I had, the script works 100%. Here's the problem: the ...
2
votes
1answer
708 views

Facebook - How to get the profile picture

I try to write a simple user script to enlarge the picture when you mouse-hover it :) ( like facebook fixer, but his code is somehow too difficult for me to understand ) I don't really know how to get ...
2
votes
1answer
252 views

How to write cross-browser compatible userscripts?

My past attempts at writing userscripts ended working in Firefox, but not Opera, because of subtle differences between the two browsers. Is it possible to use of those libraries that abstract the ...

1 2 3 4