├── .gitignore ├── 404.html ├── Ads.txt ├── LICENSE ├── README.md ├── api ├── about.js ├── guzhi.js ├── practice.js └── shields.js ├── baidu_verify_code-5Upmgof2g6.html ├── favicon.png ├── index ├── bg.jpg └── index.html ├── package.json ├── sitemap.xml ├── src ├── about-card.js ├── common.js ├── guzhi-card.js ├── practice-card.js └── shields.js ├── test └── test-function.js ├── vercel.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | test.svg 3 | node_modules 4 | .vercel 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/404.html -------------------------------------------------------------------------------- /Ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-2597042766299857, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/README.md -------------------------------------------------------------------------------- /api/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/api/about.js -------------------------------------------------------------------------------- /api/guzhi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/api/guzhi.js -------------------------------------------------------------------------------- /api/practice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/api/practice.js -------------------------------------------------------------------------------- /api/shields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/api/shields.js -------------------------------------------------------------------------------- /baidu_verify_code-5Upmgof2g6.html: -------------------------------------------------------------------------------- 1 | da3671a64b19fe84a3b1aa064a9ce0e1 -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/favicon.png -------------------------------------------------------------------------------- /index/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/index/bg.jpg -------------------------------------------------------------------------------- /index/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/index/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/package.json -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/sitemap.xml -------------------------------------------------------------------------------- /src/about-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/src/about-card.js -------------------------------------------------------------------------------- /src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/src/common.js -------------------------------------------------------------------------------- /src/guzhi-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/src/guzhi-card.js -------------------------------------------------------------------------------- /src/practice-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/src/practice-card.js -------------------------------------------------------------------------------- /src/shields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/src/shields.js -------------------------------------------------------------------------------- /test/test-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/test/test-function.js -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/vercel.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangguangZhou/Luogu-User-Card/HEAD/yarn.lock --------------------------------------------------------------------------------