Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/titobouzout/vpn
- Owner: titoBouzout
- Created: 2020-02-07T08:24:04.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-08T10:30:19.000Z (8 months ago)
- Last Synced: 2024-03-08T11:40:31.011Z (8 months ago)
- Topics: chrome-extension, vpn
- Language: JavaScript
- Homepage: https://github.com/titoBouzout/vpn
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Funding: .github/FUNDING.yml
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
repoNOTE: 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'`