├── .gitignore ├── .vscode └── extensions.json ├── LICENSE ├── QQ截图20240730164924.png ├── README.md ├── README_EN.md ├── assets ├── 32.png └── wxt.svg ├── entrypoints ├── background.ts ├── chat_gpt.content.ts ├── cnblogs.content.ts ├── csdn.content.ts ├── other.content.ts ├── popup │ ├── App.vue │ ├── index.html │ ├── main.ts │ └── style.css ├── wechat_article.content.ts ├── zhihu_answer.content.ts └── zhihu_article.content.ts ├── package.json ├── pnpm-lock.yaml ├── public └── icon │ ├── 128.png │ ├── 16.png │ ├── 32.png │ ├── 48.png │ └── 96.png ├── tsconfig.json └── wxt.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/LICENSE -------------------------------------------------------------------------------- /QQ截图20240730164924.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/QQ截图20240730164924.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/README_EN.md -------------------------------------------------------------------------------- /assets/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/assets/32.png -------------------------------------------------------------------------------- /assets/wxt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/assets/wxt.svg -------------------------------------------------------------------------------- /entrypoints/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/entrypoints/background.ts -------------------------------------------------------------------------------- /entrypoints/chat_gpt.content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/entrypoints/chat_gpt.content.ts -------------------------------------------------------------------------------- /entrypoints/cnblogs.content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/entrypoints/cnblogs.content.ts -------------------------------------------------------------------------------- /entrypoints/csdn.content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/entrypoints/csdn.content.ts -------------------------------------------------------------------------------- /entrypoints/other.content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/entrypoints/other.content.ts -------------------------------------------------------------------------------- /entrypoints/popup/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/entrypoints/popup/App.vue -------------------------------------------------------------------------------- /entrypoints/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/entrypoints/popup/index.html -------------------------------------------------------------------------------- /entrypoints/popup/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/entrypoints/popup/main.ts -------------------------------------------------------------------------------- /entrypoints/popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/entrypoints/popup/style.css -------------------------------------------------------------------------------- /entrypoints/wechat_article.content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/entrypoints/wechat_article.content.ts -------------------------------------------------------------------------------- /entrypoints/zhihu_answer.content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/entrypoints/zhihu_answer.content.ts -------------------------------------------------------------------------------- /entrypoints/zhihu_article.content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/entrypoints/zhihu_article.content.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/icon/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/public/icon/128.png -------------------------------------------------------------------------------- /public/icon/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/public/icon/16.png -------------------------------------------------------------------------------- /public/icon/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/public/icon/32.png -------------------------------------------------------------------------------- /public/icon/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/public/icon/48.png -------------------------------------------------------------------------------- /public/icon/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/public/icon/96.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./.wxt/tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /wxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stand404/automd/HEAD/wxt.config.ts --------------------------------------------------------------------------------