-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to deal with ajax.googleapis.com? #267
Comments
It would be nice to have some built in way to do this. Currently, I'm redirecting ajax.googleapis.com to my own local webserver which is serving the requests for jquery etc, but it would be nice to have RequestPolicy take care of this. |
When you get your *.js files from googleapis.com or similar, then - as far as I understand - google will only see:
you can take care of cookies with CookieMonster or similar, by disallowing googleapis to set them, the browser string I don't know, but I guess there's an extension for that too, and you can disallow sending the referrer to google with RefControl. That leaves google with your IP address which is not terribly telling. They will know that this IP, which they'll possibly correlate with your profile, is online and that's it. I'm not saying that it this makes you invisible, but it reduces the damage somewhat. I agree that I'd be very nice if RequestPolicy could let the browser cache jquery once and then "never again" let the browser access googleapis to get that same JS file. |
If you're really worried about Google, theoretically you could edit your hosts file to redirect ajax.googleapis.com to some other IP where you host the relevant JavaScript files yourself. Can even be 127.0.0.1, but as you cannot change the query path, you need to have at least some sort of web server running. |
Take a look at this project, it aims at running a local mirror of It was thought to be run on OS X but should work with minimal configuration on other *nixes too. |
On Tue, 3 Dec 2013, Lorenzo Manacorda wrote:
Thanks, I'll check it out. |
Copied from #396 :
An addon that does a local mirror of common js libs (usually fetched from CDNs) would be great, bit outside of scope for RequestPolicy, but definitely wanted. |
Several partial solutions to this:
Closing this as I think everything has been said. Feel free to discuss this in General discussion or reopen this issue if appropriate. |
@nodiscc are you collecting all answers/explanations/statements for a potential FAQ (remembering them) like this one? If not, I'd do it. 👍 on your comment |
Yep @myrdd questions like this one will be included in the FAQ (I'm still working on the doc/website, but directly editing the HTML to test ordering/readability/additions from requestpolicy.com |
A possible candidate https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/ (https://github.com/Synzvato/decentraleyes), untested. |
Thursday Dec 22, 2011 at 19:03 GMT
Originally opened as RequestPolicy/requestpolicy#267
Many sites depend on jQuery served by google. Can a separate tab be added to requestpolicy to allow resources like this to be loaded from an alternative place? For e.g. I could host my own version of jQuery and point http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js there instead.
I don't know that this is necessarily the solution (hence the vague ticket name, sorry about that), but RequestPolicy breaks websites left right and centre without ajax.googleapis.com whitelisted everywhere and then pow, they're tracking me again whether I like it or not.
I only installed RequestPolicy an hour ago and I'm already seeing three of my most visited websites (stackoverflow, slashdot and reddit) breaking.
The text was updated successfully, but these errors were encountered: