├── .eslintrc.json ├── .gitignore ├── README.md ├── components ├── CoalitionBadge.tsx ├── ImageFallback.tsx ├── LogtimeHeatmap.tsx ├── ProfileCards.tsx └── pages │ ├── LoginPage.tsx │ ├── OtherProfilePage.tsx │ ├── ProfilePage.tsx │ └── SearchPage.tsx ├── contexts └── ui.context.tsx ├── generate-extension.sh ├── lib ├── fetch.helper.ts ├── intra-fetcher.ts └── logtime-calculator.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx └── index.tsx ├── postcss.config.js ├── public ├── favicon.ico ├── favicon.png ├── fonts │ ├── ParaType-FuturaPTBook.otf │ └── streamline-30px.woff ├── images │ ├── chrome │ │ ├── icon128.png │ │ ├── icon16.png │ │ ├── icon32.png │ │ └── icon48.png │ └── default-bg.jpg └── manifest.json ├── screenshots ├── 1.png └── 2.png ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json └── types.d.ts /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/README.md -------------------------------------------------------------------------------- /components/CoalitionBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/components/CoalitionBadge.tsx -------------------------------------------------------------------------------- /components/ImageFallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/components/ImageFallback.tsx -------------------------------------------------------------------------------- /components/LogtimeHeatmap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/components/LogtimeHeatmap.tsx -------------------------------------------------------------------------------- /components/ProfileCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/components/ProfileCards.tsx -------------------------------------------------------------------------------- /components/pages/LoginPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/components/pages/LoginPage.tsx -------------------------------------------------------------------------------- /components/pages/OtherProfilePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/components/pages/OtherProfilePage.tsx -------------------------------------------------------------------------------- /components/pages/ProfilePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/components/pages/ProfilePage.tsx -------------------------------------------------------------------------------- /components/pages/SearchPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/components/pages/SearchPage.tsx -------------------------------------------------------------------------------- /contexts/ui.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/contexts/ui.context.tsx -------------------------------------------------------------------------------- /generate-extension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/generate-extension.sh -------------------------------------------------------------------------------- /lib/fetch.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/lib/fetch.helper.ts -------------------------------------------------------------------------------- /lib/intra-fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/lib/intra-fetcher.ts -------------------------------------------------------------------------------- /lib/logtime-calculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/lib/logtime-calculator.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/fonts/ParaType-FuturaPTBook.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/public/fonts/ParaType-FuturaPTBook.otf -------------------------------------------------------------------------------- /public/fonts/streamline-30px.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/public/fonts/streamline-30px.woff -------------------------------------------------------------------------------- /public/images/chrome/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/public/images/chrome/icon128.png -------------------------------------------------------------------------------- /public/images/chrome/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/public/images/chrome/icon16.png -------------------------------------------------------------------------------- /public/images/chrome/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/public/images/chrome/icon32.png -------------------------------------------------------------------------------- /public/images/chrome/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/public/images/chrome/icon48.png -------------------------------------------------------------------------------- /public/images/default-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/public/images/default-bg.jpg -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/public/manifest.json -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversableCode/42Assistant-Extension/HEAD/types.d.ts --------------------------------------------------------------------------------