├── .gitignore ├── .prettierrc.js ├── README.md ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── images │ ├── icon@128.png │ ├── icon@16.png │ ├── icon@32.png │ └── icon@48.png ├── manifest.json └── popup.html ├── resources ├── example.png └── example2.png ├── rspack.config.ts ├── src ├── content │ ├── api.ts │ ├── components │ │ ├── DownloadModal.tsx │ │ └── DownloadPost.tsx │ ├── index.css │ └── index.tsx ├── global.d.ts ├── inject │ └── index.ts ├── popup │ ├── App.tsx │ ├── index.css │ └── index.tsx └── share │ ├── constant.ts │ ├── parse.ts │ ├── types.ts │ └── utils.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/images/icon@128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/public/images/icon@128.png -------------------------------------------------------------------------------- /public/images/icon@16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/public/images/icon@16.png -------------------------------------------------------------------------------- /public/images/icon@32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/public/images/icon@32.png -------------------------------------------------------------------------------- /public/images/icon@48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/public/images/icon@48.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/public/popup.html -------------------------------------------------------------------------------- /resources/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/resources/example.png -------------------------------------------------------------------------------- /resources/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/resources/example2.png -------------------------------------------------------------------------------- /rspack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/rspack.config.ts -------------------------------------------------------------------------------- /src/content/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/src/content/api.ts -------------------------------------------------------------------------------- /src/content/components/DownloadModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/src/content/components/DownloadModal.tsx -------------------------------------------------------------------------------- /src/content/components/DownloadPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/src/content/components/DownloadPost.tsx -------------------------------------------------------------------------------- /src/content/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/src/content/index.css -------------------------------------------------------------------------------- /src/content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/src/content/index.tsx -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/inject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/src/inject/index.ts -------------------------------------------------------------------------------- /src/popup/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/src/popup/App.tsx -------------------------------------------------------------------------------- /src/popup/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/src/popup/index.css -------------------------------------------------------------------------------- /src/popup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/src/popup/index.tsx -------------------------------------------------------------------------------- /src/share/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/src/share/constant.ts -------------------------------------------------------------------------------- /src/share/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/src/share/parse.ts -------------------------------------------------------------------------------- /src/share/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/src/share/types.ts -------------------------------------------------------------------------------- /src/share/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/src/share/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmio/juejin-helper/HEAD/tsconfig.json --------------------------------------------------------------------------------