├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── lint-and-build.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── package.json ├── pnpm-lock.yaml ├── rollup.config.js ├── src ├── assets │ ├── icon128.png │ ├── icon16.png │ └── icon48.png ├── manifest.json ├── pages │ ├── options │ │ ├── App.tsx │ │ ├── index.html │ │ └── index.tsx │ └── popup │ │ ├── App.tsx │ │ ├── index.html │ │ └── index.tsx └── utils │ └── transformBookmarks.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/lint-and-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/.github/workflows/lint-and-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | "prettier-config-standard" 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/assets/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/src/assets/icon128.png -------------------------------------------------------------------------------- /src/assets/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/src/assets/icon16.png -------------------------------------------------------------------------------- /src/assets/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/src/assets/icon48.png -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/pages/options/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/src/pages/options/App.tsx -------------------------------------------------------------------------------- /src/pages/options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/src/pages/options/index.html -------------------------------------------------------------------------------- /src/pages/options/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/src/pages/options/index.tsx -------------------------------------------------------------------------------- /src/pages/popup/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/src/pages/popup/App.tsx -------------------------------------------------------------------------------- /src/pages/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/src/pages/popup/index.html -------------------------------------------------------------------------------- /src/pages/popup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/src/pages/popup/index.tsx -------------------------------------------------------------------------------- /src/utils/transformBookmarks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/src/utils/transformBookmarks.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patheticGeek/improved-potato/HEAD/tsconfig.json --------------------------------------------------------------------------------