Page 1 of 1

Disallow Twitter.js except on Twitter.com

Posted: Thu Sep 25, 2014 11:49 pm
by Guest
How do I Disallow Twitter.js except on Twitter.com?

Re: Disallow Twitter.js except on Twitter.com

Posted: Fri Sep 26, 2014 1:59 am
by barbaz
I'm not sure whether you want to block a file named "Twitter.js" when not on twitter, which would be something like:

Code: Select all

Site ^.+/Twitter\.js(?:[\?,;&]|$)
Accept from .twitter.com
Deny INC
or block active content from twitter when not on twitter, which would be:

Code: Select all

Site .twitter.com
Accept from .twitter.com
Deny INC(SCRIPT, OBJ, FONT, XHR, MEDIA)
Sandbox INC
(you need to script-allow twitter.com for this to have any useful effect)