-
Install the the
shadowsocks-libevpackage from apt repository.sudo apt update sudo apt install shadowsocks-libev -
Save
ss.jsonas/etc/shadowsocks-libev/config.json.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "parser": "babel-eslint", | |
| "parserOptions": { | |
| "sourceType": "module", | |
| "ecmaFeatures": { | |
| "jsx": true | |
| } | |
| }, | |
| "plugins": [ | |
| "babel", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @ NAME: Cross-browser TextStorage | |
| * @ DESC: text storage solution for your pages | |
| * @ COPY: sofish, http://sofish.de | |
| */ | |
| typeof window.localStorage == 'undefined' && ~function () { | |
| var localStorage = window.localStorage = {}, | |
| prefix = 'data-userdata', | |
| doc = document, |