3
votes
Flash should open window in new tab, but instead it opens a new pop up on mac
Check your Firefox preferences >> Tabs >> New windows should be opened in (a new window | a new tab). Do you have different settings for your Firefox on your Windows and on your Mac?
…
2
votes
JavaScript/Greasemonkey: Avoiding FireFox Security Warning when Submitting a Form from a Secure Page
This may be possible by doing a GM_xmlhttpRequest. e.g.,
GM_xmlhttpRequest({
method: 'POST',
url: 'http://your.insecure.site.here',
onload: function(details) {
// look …
1
vote
How can I change Firefox’s proxy settings from an external program?
From what I could see from the documentation, Charles has a matching Firefox extension which it installs/uses. That may be how it can reload the proxy information on the fly.
Proxy informa …
