1
vote
1answer
50 views

Use Greasemonkey to replace links, to images, with images?

I'm new to Greasemonkey and I would like to replace the links to images, with just an <img> tag instead. For example, this forums page has a bunch of links like: <a target="_blank" ...
0
votes
0answers
20 views

Tampermonkey - add page using non-existing URL

I'm creating a userscript which adds new functions to a website. The website has many users, but doesn't have a feature to search for users.I want to create such a function. To do that, I have created ...
1
vote
2answers
46 views

ID Attribute has Brackets arround it?

I'm adding a Greasemonkey script to spice up a page where I work at, but I'm running into problem. I'm looking to add default values into form fields so every time I fill out the form I don't have to ...
0
votes
0answers
46 views

greasemonkey inject XML document?

greasemonkey injects using <script src=' .. but i dont think this is gonna work with XML documents, so i found this question about using javascript in an XML document using the mentioned tag, how ...
0
votes
0answers
87 views

Changing td background color when argument(s) are met

Platform: Greasemonkey Goal: To set <td style="background-color:green!important;"> when argument(s) are met Usage: Private WWW: http://kuutiomaa.fi/online The page is in ...
0
votes
1answer
52 views

How to inject a button that will execute a function?

I'm having real difficulties using Greasemonkey and Firefox javascript to inject a button that, when selected, will execute a function. For example, I am trying to place the button right after the ...
2
votes
1answer
102 views

Place a sidebar on every page using a Greasemonkey script

I'm trying to write a Greasemonkey script that will place a navigational sidebar on every web page that it is loads on, but I still don't know of a way to do this without covering up some of the ...
0
votes
3answers
149 views

Completely clear a page through JS without redirecting to about:blank?

For a userscript I need to clear a page including all of its styles, contents, events and timers. Is it possible to do that without redirecting to about:blank? I tried document.body.remove(); ...
1
vote
1answer
141 views

How can my Greasemonkey script find links with a specific pattern?

My target page has some links like: http://example.com/ref.php?564646 where the number varies. How can I find these links and show them at the top of the page using a Greasemonkey script?
1
vote
1answer
229 views

Basic method to Add html content to the page with Greasemonkey?

Is there a Greasemonkey method to append basic HTML content to the end of a page right after the <body> tag, or right before it ends? I found before/after methods but I need to know names of ...
1
vote
1answer
99 views

How to remove an HTML element in a target page with no ID's or class names, etc.?

I want to remove an element which has an XPath: html/body/center/center/table/tbody/tr/td I want to remove the <table> and its content. I found some answers but they all need id, class name, ...
0
votes
3answers
132 views

How to change the color of one specific letter on a web page (wrap the text)?

I want to change one letter, let's call it "n", to a different color, let's say yellow. I want this done on all pages and in all fonts and sizes. I have found this script for Greasemonkey, which I ...
1
vote
2answers
276 views

pasting data from one webpage to textarea of another webpage using javascript

I don't know how to copy data from a table of one webpage and paste it into a textarea of another webpage (opened in another tab) using only JAVASCRIPT. m planning to do this using greasemonkey I've ...
1
vote
1answer
125 views

Script to replace code in a target web page

I need some help with a Greasemonkey script. I'm trying to replace some text in an HTML document and to delete a javascript function from that website. The expression I want to rewrite is ...
1
vote
1answer
214 views

“clicking” submit button with no ID using javascript

Here is the submit button i would like to 'click' using javascript. <input type="submit" name="REG_BTN" value="Submit Changes"> I am trying to use something along the lines of... ...
1
vote
3answers
55 views

Javascript Value composed of several words [value=dog crazy]

thanks for the help in this forum, I was able to get my code to work: // ==UserScript== // @name PARINGO // @description Auto select rpt radio button // @namespace PARINGO // @include ...
1
vote
1answer
273 views

Auto-click a radio button but first check the sentence (label)?

I need help... I want to click a radio button automatically...but also need to check the sentence (label)... eg...() <-radio button <label>How much is 1+1?</label><br/> <input ...
-2
votes
1answer
60 views

How can adapt that auto-answering code for my HTML Page? [closed]

I am beginner javascript about. so I can't adapt that code for my HTML. Can you adapt it for me ? and what is your advise edit these type codes for me? Thanks. My code is at jsfiddle.net/66Lam. I ...
1
vote
1answer
166 views

jquery click and cookies

I have a greasemonkey script to run in a specific website. The objective is make click in a specific button, remove the cookie (Tthe website sets the cookie on click, i have to remove the cookie ...
2
votes
1answer
201 views

Greasemonkey script to move an element into another element?

I want to move <div> elements. In this case, swap the first and last div.clearfix. So this: <fieldset> <div class="clearfix "> <label ...
1
vote
2answers
102 views

How to measure Greasemonkey downloads in Google analytics

I've got a greasemonkey (.user.js) file people can download on my webpage. I'd like to keep track of how many times it has been downloaded. I could use ...
0
votes
3answers
336 views

How to auto-fill this password, web form popup?

I'm trying to auto fill a popup / alert web form: So far it seems that Greasemonkey may be able to solve this problem for me but my javascript is nearly nonexistent. I've come across Xavi's ...
0
votes
2answers
115 views

How do I adapt this quiz-answering script to this new quiz layout?

I want the browser to be able to select correct answers to questions. I found an answer that seems to be the right idea (How can I automatically select specific radio buttons with Greasemonkey?) but I ...
0
votes
2answers
352 views

How Can i auto continuous click button by Greasemonkey?

I want to constantly click on button id="option2" by greasemonkey. http://jsfiddle.net/cBJaP/ Video: http://www.youtube.com/watch?v=wUUo0eguGTg How can i do it ? <div class="content"> ...
-1
votes
3answers
175 views

Javascript via element, replace single part of a table

Long story short I'm making a greasemonkey script. The pages I work on have this specific table with various values depending on the page. <table class="billing dead"> <tbody> ...
-1
votes
1answer
71 views

How can I adapt this previous script answer to my target pages?

I want the browser to be able to highlight correct answers to questions in green. I found an answer that seems to be the right idea (How can I automatically select specific radio buttons with ...
0
votes
3answers
70 views

How can check a place in a page?

I use something like this to click an element on a page by condition: var findElem = function(elems, text) { for (var i = 0; i < elems.length; i++) { if (elems[i].textContent == text) ...
0
votes
3answers
372 views

How can I run a Greasemonkey script when page changed via ajax?

I have that script: // ==UserScript== // @name example // @include http://xxx* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js // ==/UserScript== var findElem = ...
1
vote
2answers
95 views

How can I click an item by condition with Greasemonkey?

<input type="hidden" name="my_id" id="my_id" value="1"> <ul class="myList clearfix" id="thismyList"> <li class="myBullet" id="answer1">blabla1</li> <li class="myBullet" ...
1
vote
1answer
378 views

How can I automatically select specific radio buttons with Greasemonkey?

I want to automatically answer questions with Greasemonkey. I have the questions and answers, but how can select them? Here's the HTML: <div class="vito_form_q"> <div ...
1
vote
1answer
141 views

How can I click a <li> item with Greasemonkey?

<ul class="myList clearfix" id="thismyList"> <li class="myBullet" id="answer1">blabla1</li> <li class="myBullet" id="answer2">blabla2</li> <li ...
0
votes
3answers
1k views

How to change width of div?

Okay, I'm making a greasemonkey script and I'm trying to shrink the right column in facebook that has the ads on down to 1px so i can stretch the relevant content in the middle, but everything I try ...
0
votes
4answers
104 views

How to get these nested quotes to work in Javascript?

I'm trying to inject some Javascript code into a webpage using Greasemonkey. First I will start with what works. var script = document.createElement( 'script' ); script.src = ...
1
vote
1answer
3k views

How to use greasemonkey to selectively remove content from a website

The content I am trying to modify has a series of <div> entries, and within each of these are other <div> entries. There are no id tags to help here. What I want the script to do is ...
0
votes
0answers
213 views

Small Greasemonkey Script that Highlights H2 Elements

The following script will highlight all instances of my string, "Greasemonkey" in yellow: document.body.innerHTML= document.body.innerHTML.replace(/Greasemonkey/g, function(m){ return '<span ...
-1
votes
1answer
261 views

How do I color a string of text RED in Greasemonkey?

Could someone help me write a simple Greasemonkey script that allows it to search for a string of text on one website and then simply color it red? For example, say a site had the words, "Normal ...
0
votes
3answers
108 views

Saving custom HTML locally on live sites without FTP access?

We all know that Firebug / Web Developer Toolbar, etc. can change the HTML/CSS of any page to our local machines. Upon refreshing, however, we know these changes are not saved. How does someone save ...
1
vote
1answer
317 views

Greasemonkey - Find link and add another link

We have an internal inventory at work that is web based. I am looking at add a link say under a link on the page. There is no ID, or classes for me to hook into. Each link at least that I want to add ...
4
votes
5answers
316 views

How do I replace plain text image URLs in textnodes with img elements using JavaScript?

I'm a complete newbie to JavaScript, and I'm trying to make a Greasemonkey script that replaces image links with the actual image (as well as do other stuff that I'll do later on). So I thought I ...
1
vote
2answers
23 views

How can I summarize the updates to a table on an page I browse?

I am a student at a University. With the placement process going on, we have an internal placement website that shows updates and status about various companies I have applied to. Since the number of ...
1
vote
1answer
230 views

Flash HTTP requests URL containing RTMPE URL. How do I trick it to get a local copy or a copy with my content?

A web channel streaming service streams to a certain IP range, it only checks the IP in example.com/cmd.php?id=xxx (channel number) and outputs an rtmpe stream URL, nothing else. How do I trick it to ...
0
votes
5answers
729 views

Dynamically change the HTML source using native JavaScript?

I was trying to change my HTML files. Please see this to get a better understanding of what I am up to. Every thing worked fine but as I viewed the source it was not changed. The changes I was trying ...
2
votes
1answer
794 views

XPath to find nodes with text + all their descendants & siblings that match certain criteria

Background: I'm trying to improve on a Greasemonkey script I found. The script marks prices in foreign currencies and can translate them into the currency of your choice. The main problem: How to ...
0
votes
2answers
178 views

Frame overwrites the button?

dv = document.createElement('div'); // create dynamically div tag dv.setAttribute('id', "lyr1"); // give id to it dv.className = "top"; // set the style classname // set the inner styling ...
0
votes
1answer
321 views

How to read specific html using Javascript / Greasemonkey

Hi this is the first question I have asked so sorry if its stupid, But I am new to JavaScript and Greasemonkey in general. Question is how do I read specific areas of HTML and store them as ...
1
vote
1answer
1k views

Greasemonkey script for auto-fill form and submit automatically

As the title suggests, I want to actually brute-force (don't pay attention, useless information) using grease-monkey script by trying each word/alphabet I provide. But as I think jQuery is more easier ...
-1
votes
5answers
2k views

Changing HTML With Greasemonkey

I've been searching for a way to change HTML on a website my main problem being it does not have an id tag that I can use to pull it out and change it, using Greasemonkey JavaScript. sorry I left ...
0
votes
2answers
129 views

Correct way to recreate HTML document from a string?

First things first, I'm cheap! :) I can't afford to buy a static IP for my domain and I can't afford those fancy certificates... So no SSL/HTTPS for me. What I'm trying to accomplish here is to ...
1
vote
1answer
124 views

Checking current location and clicking a link button every few minutes

Ive got this current situation with an auction site. trada.net Somtimes they go offline for a few hours, with a current locatoin like: offline location, now, it basically disables all my other GM ...
2
votes
2answers
1k views

Using only CR as linebreak inside pre tag doesn't work

At work, we stumbled upon Bugzilla creating HTML output that led to lines much too long because the browser didn't break the lines. This was happening on Chrome, but not on Firefox 3.5, so we didn't ...

1 2