Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.04 KB

README.md

File metadata and controls

28 lines (20 loc) · 1.04 KB

min-browser-freestance

Redirector script from mainstream websites to their privacy-supporting mirrors for the min browser.

Usage

Create a userscript.js file following this guide (called whatever you'd like) for your script.

Example: To automatically redirect youtube.com to invidious.snopyta.org add this in your userscript.js file.

// ==UserScript==
// @name Redirect to invidious
// @match https*://youtube.com
// @match https*://www.youtube.com
// @run-at document-start
// ==/UserScript==

window.location.hostname = 'invidious.snopyta.org'

Create a new userscript.js for every websites mirrors that you'd like to be automatically redirected to.

Here's a few ideas:

Credit: PalmerAL