SimonBrazell / privacy-redirect

A simple web extension that redirects Twitter, YouTube, Instagram & Google Maps requests to privacy friendly alternatives.
GNU General Public License v3.0
1.95k stars 114 forks source link

Redirect Wikipedia to Wikiless #232

Closed orenomfi closed 3 years ago

orenomfi commented 3 years ago

I made a project called Wikiless, it's self-hostable, FOSS. How it works is that the backend basically mirrors the Wikipedia content to the user. The user's browser never talks to Wikipedia, only the server backend does. So you don't give your IP address to the Wikipedia. Currently there's no other instances but the official one wikiless.org.

URL renaming: https://en.wikipedia.org/wiki/Monero -> https://wikiless.org/wiki/Monero?lang=en

https://de.wikipedia.org/ -> https://wikiless.org/?lang=de

https://en.wikipedia.org/w/index.php?title=Monero&action=history -> https://wikiless.org/w/index.php?title=Monero&action=history&lang=en

ghost commented 3 years ago

On the project description for Wikiless it says "No JavaScript or ads.", though I see on Wikiless itself there is a script tag right on top. This seems like a contradiction to me, is it?

orenomfi commented 3 years ago

On the project description for Wikiless it says "No JavaScript or ads.", though I see on Wikiless itself there is a script tag right on top. This seems like a contradiction to me, is it?

Wikiless has a strict CSP.

Content-Security-Policy: default-src 'none'; base-uri 'none'; font-src 'self' data:; img-src 'self' data:; object-src 'none'; script-src 'none'; script-src-attr 'none'; style-src 'self' 'unsafe-inline'; media-src 'self'; form-action 'self'; frame-ancestors 'none'; upgrade-insecure-requests; block-all-mixed-content;

This prevents all JavaScript from running in the browsing, including the Githubissues.

  • Githubissues is a development platform for aggregating issues.