Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/titobouzout/vpn

A simple Chrome Extension to proxy any domain via some of your own servers using squid.
https://github.com/titobouzout/vpn

chrome-extension vpn

Last synced: 4 days ago
JSON representation

A simple Chrome Extension to proxy any domain via some of your own servers using squid.

Awesome Lists containing this project

README

        

# Simple Chrome VPN Extension

Proxy selected/any domains via some of your own servers.

### On your own computer run

ssh -D 1337 -N -C root@serverip

## The Extension

1. edit `background.js` to select which domains you want to proxy
2. Go to Chrome Menu - More Tools - Extensions - Load Unpacked and select this
repo

NOTE: To avoid the "loaded unpacked extension" warning on every chrome restart
you may use Chrome Dev version which doesnt warns.

## At startup on Windows

You may use the `task scheduler` to run the command at startup when the user
logins.

Program:

`PowerShell.exe`

Arguments:

`Start-Process -WindowStyle hidden -FilePath "ssh.exe" -ArgumentList '-D 1337 -N -C root@serverip'`