Tagged Questions
8
votes
1answer
196 views
Is there a Chrome (or other browser) plugin that blocks JavaScript alerts that fire when leaving a page?
Context:
Lots of pages have alerts when you leave them: if you close tabs, navigate away without saving, etc, there are numerous reasons why a site would alert/block you from leaving until you ...
0
votes
1answer
704 views
Javascript issue & IE10 in Win8
I had an issue with Skype couple of day ago (no login cells, only background with clouds and rainbow); according to some how-to I erased all private content and history + restarted IE to default ...
0
votes
3answers
116 views
Debug JS from browser without a server/localhost
So something I do very frequently is writing random scripts in JS without really being part of an app. To run them I just paste them in the console of either Chrome of FF which works as a nice REPL, ...
2
votes
2answers
234 views
How do I prevent automatic browser page refreshment done by Javascript?
There are some news websites which automatically and periodically refresh their page just in order to show the user more advertisement. If you are watching a video, all the buffered stream is gone ...
1
vote
1answer
115 views
Stopping Flash/Javascript Loaded Images/Videos in Firefox
I would like to stop flash and javascript loaded images from automatically loading in FF. How can I accomplish this with the use of add-ons?
Please note disabling javascript by default is not an ...
4
votes
2answers
129 views
Making notes on a live website to send (as a link) to someone else
Is there any way (firefox addon, javascript tool, etc) to make notes on a live webpage. For example, let's say I want to send someone a link to http://developer.android.com/guide/index.html
But I ...
0
votes
1answer
766 views
How to reload javascript modules for Firefox extension development?
Currently, when I develop a Firefox extension that uses JavaScript Modules (JSM), then I have to disable the extension -> restart Firefox -> enable the extension -> restart Firefox in order to execute ...
2
votes
0answers
369 views
How do I filter certain javascripts from running and not block them all on Drudge Report?
How do I block this particular "auto refresh" script on Drudge Report from running in my Firefox browser on Windows XP?
var timer = setInterval("autoRefresh()", 1000 * 60 * 3);
function ...
1
vote
1answer
3k views
QuickJava for Google Chrome?
Is there something similar like QuickJava (Firefox Addon) for the Google Chrome?
2
votes
3answers
428 views
Does IE 6/7/8 have an addon that is similar to “Web Developer” for Firefox?
I am looking for the same JavaScript functionality (Errors/Warnings/etc.) that the Web Developer add-on for Firefox has. Does such a thing exist and where can I find it?
3
votes
1answer
457 views
Is there a way to open javascript functions in new tabs?
So, I'm trying to use a website that allows searching, and is pretty slow. Naturally, I'd like to open all of the interesting results in tabs, so I don't have to wait for them all to load.
...