├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .ols.config.ts ├── .prettierignore ├── .prettierrc ├── .stylelintrc.json ├── README.md ├── package.json ├── packet-proxy.crx ├── resources ├── code_proxy.png ├── cookie_proxy.png ├── data_proxy.png ├── header_proxy.png ├── packet_proxy.png └── source_proxy.png ├── src ├── assets │ ├── content.js │ ├── jietu.png │ ├── manifest.json │ ├── metadata │ │ ├── computed_hashes.json │ │ └── verified_contents.json │ ├── packet proxy small.png │ ├── packet proxy.png │ └── request.js ├── index.html ├── index.tsx ├── pages │ └── Home │ │ ├── Cookie │ │ ├── index.less │ │ └── index.tsx │ │ ├── Header │ │ ├── index.less │ │ └── index.tsx │ │ ├── Source │ │ ├── index.less │ │ └── index.tsx │ │ ├── components │ │ ├── AutoComplete │ │ │ ├── HEADER_OPTIONS.ts │ │ │ └── index.tsx │ │ ├── BaseInput │ │ │ └── index.tsx │ │ ├── ButtonGroup │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── DataDetail │ │ │ └── index.tsx │ │ ├── ExportModal │ │ │ └── index.tsx │ │ ├── Group │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── GroupDetail │ │ │ └── index.tsx │ │ ├── GroupModal │ │ │ └── index.tsx │ │ ├── ImportModal │ │ │ └── index.tsx │ │ ├── ItemDataModal │ │ │ └── index.tsx │ │ ├── ItemHeaderModal │ │ │ └── index.tsx │ │ ├── ItemModal │ │ │ └── index.tsx │ │ └── Replacer │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── index.less │ │ └── index.tsx ├── services │ └── index.ts ├── styles │ ├── global.less │ ├── normalize.less │ └── theme.less ├── types │ ├── assets.d.ts │ ├── index.d.ts │ └── less.d.ts └── utils │ └── request.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /.ols.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/.ols.config.ts -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/package.json -------------------------------------------------------------------------------- /packet-proxy.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/packet-proxy.crx -------------------------------------------------------------------------------- /resources/code_proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/resources/code_proxy.png -------------------------------------------------------------------------------- /resources/cookie_proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/resources/cookie_proxy.png -------------------------------------------------------------------------------- /resources/data_proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/resources/data_proxy.png -------------------------------------------------------------------------------- /resources/header_proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/resources/header_proxy.png -------------------------------------------------------------------------------- /resources/packet_proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/resources/packet_proxy.png -------------------------------------------------------------------------------- /resources/source_proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/resources/source_proxy.png -------------------------------------------------------------------------------- /src/assets/content.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 一定要先发送一条消息(随便啥消息),这样在background中才能监听得到当前页面的url 3 | */ 4 | chrome.runtime.sendMessage({ greeting: "hello, world" }, function (response) {}); 5 | -------------------------------------------------------------------------------- /src/assets/jietu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/assets/jietu.png -------------------------------------------------------------------------------- /src/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/assets/manifest.json -------------------------------------------------------------------------------- /src/assets/metadata/computed_hashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/assets/metadata/computed_hashes.json -------------------------------------------------------------------------------- /src/assets/metadata/verified_contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/assets/metadata/verified_contents.json -------------------------------------------------------------------------------- /src/assets/packet proxy small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/assets/packet proxy small.png -------------------------------------------------------------------------------- /src/assets/packet proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/assets/packet proxy.png -------------------------------------------------------------------------------- /src/assets/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/assets/request.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/Cookie/index.less: -------------------------------------------------------------------------------- 1 | .cookie-table-container { 2 | margin-top: 10px; 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/Home/Cookie/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/Cookie/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/Header/index.less: -------------------------------------------------------------------------------- 1 | .header-table-container { 2 | margin-top: 10px; 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/Home/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/Header/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/Source/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/Source/index.less -------------------------------------------------------------------------------- /src/pages/Home/Source/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/Source/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/AutoComplete/HEADER_OPTIONS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/components/AutoComplete/HEADER_OPTIONS.ts -------------------------------------------------------------------------------- /src/pages/Home/components/AutoComplete/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/components/AutoComplete/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/BaseInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/components/BaseInput/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/ButtonGroup/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/components/ButtonGroup/index.less -------------------------------------------------------------------------------- /src/pages/Home/components/ButtonGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/components/ButtonGroup/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/DataDetail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/components/DataDetail/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/ExportModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/components/ExportModal/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/Group/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/components/Group/index.less -------------------------------------------------------------------------------- /src/pages/Home/components/Group/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/components/Group/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/GroupDetail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/components/GroupDetail/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/GroupModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/components/GroupModal/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/ImportModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/components/ImportModal/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/ItemDataModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/components/ItemDataModal/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/ItemHeaderModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/components/ItemHeaderModal/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/ItemModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/components/ItemModal/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/Replacer/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/components/Replacer/index.less -------------------------------------------------------------------------------- /src/pages/Home/components/Replacer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/components/Replacer/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/index.less -------------------------------------------------------------------------------- /src/pages/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/pages/Home/index.tsx -------------------------------------------------------------------------------- /src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/services/index.ts -------------------------------------------------------------------------------- /src/styles/global.less: -------------------------------------------------------------------------------- 1 | @import './normalize.less'; 2 | -------------------------------------------------------------------------------- /src/styles/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/styles/normalize.less -------------------------------------------------------------------------------- /src/styles/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/styles/theme.less -------------------------------------------------------------------------------- /src/types/assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/types/assets.d.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- 1 | declare let chrome: any; 2 | -------------------------------------------------------------------------------- /src/types/less.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/types/less.d.ts -------------------------------------------------------------------------------- /src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/src/utils/request.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WisestCoder/packet-proxy/HEAD/tsconfig.json --------------------------------------------------------------------------------