Page 1 of 1
[RESOLVED] How to mark as untrusted?
Posted: Mon Dec 13, 2010 5:52 am
by WaltR
If anyone can help with this it would be super awesome. When I'm on a web page and I want to mark an element in the page as untrusted, how do I know which one is the one want? Sometimes it displays a long list of different items.

Re: How to mark as untrusted?
Posted: Mon Dec 13, 2010 9:26 am
by Giorgio Maone
Since everything is disabled by default, you probably have good reasons and know exactly what you want to mark as untrusted (i.e. you don't want to see again in the "Allow" list).
Anyway, you can obtain more information about elements in the menu by middle-clicking them.
Re: How to mark as untrusted?
Posted: Tue Dec 14, 2010 7:33 am
by WaltR
Hi, I appreciate the reply. Here's a picture of what I'm trying to block. It's at ImageShack. Every time I upload an image, this popup appears and the screen goes dark until I cancel it. I was able to remove the popup with RemoveItPermanently but the screen stayed dark. There's a check box at the bottom of the popup that says "Never show again" but it's worthless. I was wondering if there's a way to block something like this from ever happening in the first place with NoScript? Thanks a million.

Re: How to mark as untrusted?
Posted: Tue Dec 14, 2010 11:53 pm
by Giorgio Maone
WaltR wrote:There's a check box at the bottom of the popup that says "Never show again" but it's worthless.
Are you blocking cookies? Probably is that.
Anyway, getting rid of that modal pseudo-popup is a bit complicated, but nothing that can't be tackled by
Script Surrogates.
Just add the following prefs to your
about:config:
noscript.surrogate.imageshack.replacement
Code: Select all
(function(){var cookie=document.__proto__.__lookupGetter__('cookie');document.__proto__.__defineGetter__('cookie',function() {var c='; nevershow=y';return (cookie.apply(this).replace(c,'')+c).replace(/^; /, '')})})();alert(document.cookie)
noscript.surrogate.imageshack.sources
This will be added by default in next release.
Re: How to mark as untrusted?
Posted: Wed Dec 15, 2010 6:45 am
by WaltR
Yes it was a cookie problem. I accept cookies from ImageShack but don't keep them so I think that was the problem. I unchecked "Never show again" then checked it again and it set a new cookie called "nevershow." I set FF to save ImageShack cookies and now it doesn't do it! I really appreciate your help. NoScript is an awesome extension. I've been using it awhile now but feel like I've barely scratched the surface. Take care, Walt