├── .coveralls.yml ├── .dawn └── pipe.yml ├── .eslintignore ├── .eslintrc.json ├── .eslintrc.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG ├── LICENSE.md ├── README-EN.md ├── README.md ├── assets ├── overview.png ├── overview2.png ├── usage.png ├── usage2.png └── usage3.png ├── doc └── usages.md ├── package.json ├── server.yml ├── src ├── background.js ├── css │ └── common.less ├── forward.js ├── images │ └── icon.png ├── lib │ ├── react-dom.js │ └── react.js ├── manifest.json ├── popup.html ├── popup.js └── scripts │ ├── components │ ├── ListItem │ │ ├── Content.js │ │ └── Header.js │ └── Menu │ │ └── index.js │ ├── constants │ ├── defaultData.js │ └── regExp.js │ ├── models │ ├── List.js │ └── ListItem.js │ ├── pages │ ├── Group │ │ └── index.js │ └── Home │ │ └── index.js │ └── utils │ ├── storage.js │ └── toast.js └── test └── unit ├── demo.js └── forward.test.js /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | repo_token: xUkmPXxSeo7kOFrrZZNoF1NXDG0zrrSI5 -------------------------------------------------------------------------------- /.dawn/pipe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/.dawn/pipe.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /src/lib/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules/ 4 | .nyc_output/ 5 | coverage/ 6 | build/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- 1 | https://github.com/xdlrt/xproxy/wiki/Changelog -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README-EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/README-EN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/README.md -------------------------------------------------------------------------------- /assets/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/assets/overview.png -------------------------------------------------------------------------------- /assets/overview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/assets/overview2.png -------------------------------------------------------------------------------- /assets/usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/assets/usage.png -------------------------------------------------------------------------------- /assets/usage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/assets/usage2.png -------------------------------------------------------------------------------- /assets/usage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/assets/usage3.png -------------------------------------------------------------------------------- /doc/usages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/doc/usages.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/package.json -------------------------------------------------------------------------------- /server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/server.yml -------------------------------------------------------------------------------- /src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/background.js -------------------------------------------------------------------------------- /src/css/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/css/common.less -------------------------------------------------------------------------------- /src/forward.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/forward.js -------------------------------------------------------------------------------- /src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/images/icon.png -------------------------------------------------------------------------------- /src/lib/react-dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/lib/react-dom.js -------------------------------------------------------------------------------- /src/lib/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/lib/react.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/popup.html -------------------------------------------------------------------------------- /src/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/popup.js -------------------------------------------------------------------------------- /src/scripts/components/ListItem/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/scripts/components/ListItem/Content.js -------------------------------------------------------------------------------- /src/scripts/components/ListItem/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/scripts/components/ListItem/Header.js -------------------------------------------------------------------------------- /src/scripts/components/Menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/scripts/components/Menu/index.js -------------------------------------------------------------------------------- /src/scripts/constants/defaultData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/scripts/constants/defaultData.js -------------------------------------------------------------------------------- /src/scripts/constants/regExp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/scripts/constants/regExp.js -------------------------------------------------------------------------------- /src/scripts/models/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/scripts/models/List.js -------------------------------------------------------------------------------- /src/scripts/models/ListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/scripts/models/ListItem.js -------------------------------------------------------------------------------- /src/scripts/pages/Group/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/scripts/pages/Group/index.js -------------------------------------------------------------------------------- /src/scripts/pages/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/scripts/pages/Home/index.js -------------------------------------------------------------------------------- /src/scripts/utils/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/scripts/utils/storage.js -------------------------------------------------------------------------------- /src/scripts/utils/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/src/scripts/utils/toast.js -------------------------------------------------------------------------------- /test/unit/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/test/unit/demo.js -------------------------------------------------------------------------------- /test/unit/forward.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdlrt/xproxy/HEAD/test/unit/forward.test.js --------------------------------------------------------------------------------