├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── README.md ├── extensions └── manifest.json ├── next-env.d.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── src ├── components │ └── Button.tsx ├── constants │ └── index.ts ├── functions │ └── index.ts ├── layout │ ├── LayoutErrorBoundary.tsx │ └── index.tsx ├── pages │ ├── _app.page.tsx │ ├── index.page.tsx │ └── sample.page.tsx ├── scripts │ ├── README.md │ ├── background.ts │ └── content.ts └── types │ ├── index.ts │ └── next.d.ts ├── tailwind.config.js ├── tsconfig.json └── webpack └── webpack.config.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/README.md -------------------------------------------------------------------------------- /extensions/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/extensions/manifest.json -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { plugins: ["tailwindcss", "autoprefixer"] }; 2 | -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/functions/index.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/layout/LayoutErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/src/layout/LayoutErrorBoundary.tsx -------------------------------------------------------------------------------- /src/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/src/layout/index.tsx -------------------------------------------------------------------------------- /src/pages/_app.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/src/pages/_app.page.tsx -------------------------------------------------------------------------------- /src/pages/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/src/pages/index.page.tsx -------------------------------------------------------------------------------- /src/pages/sample.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/src/pages/sample.page.tsx -------------------------------------------------------------------------------- /src/scripts/README.md: -------------------------------------------------------------------------------- 1 | # README 2 | 3 | This directory is Chrome scripts. -------------------------------------------------------------------------------- /src/scripts/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/src/scripts/background.ts -------------------------------------------------------------------------------- /src/scripts/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/src/scripts/content.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/next.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/src/types/next.d.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayone-du/chrome-extension-template-with-nextjs/HEAD/webpack/webpack.config.js --------------------------------------------------------------------------------