├── .gitignore ├── LICENSE.md ├── README.md ├── assets ├── github-mark-white.svg ├── github-mark.svg └── react.svg ├── components ├── animated-logo.tsx ├── main-toggle-button.tsx └── tailwind.css ├── entrypoints ├── background.ts ├── content │ └── index.ts └── popup │ ├── App.css │ ├── App.tsx │ ├── index.html │ ├── main.tsx │ └── style.css ├── index.html ├── package.json ├── pnpm-lock.yaml ├── postcss.config.cjs ├── privacy.html ├── public ├── help.css ├── help.html ├── help.js └── icon │ ├── 128.png │ ├── 16.png │ ├── 32.png │ ├── 48.png │ ├── 96.png │ └── icon.svg ├── tailwind.config.ts ├── tsconfig.json ├── utils ├── core.ts └── use-local-ext-storage.ts └── wxt.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/README.md -------------------------------------------------------------------------------- /assets/github-mark-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/assets/github-mark-white.svg -------------------------------------------------------------------------------- /assets/github-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/assets/github-mark.svg -------------------------------------------------------------------------------- /assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/assets/react.svg -------------------------------------------------------------------------------- /components/animated-logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/components/animated-logo.tsx -------------------------------------------------------------------------------- /components/main-toggle-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/components/main-toggle-button.tsx -------------------------------------------------------------------------------- /components/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/components/tailwind.css -------------------------------------------------------------------------------- /entrypoints/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/entrypoints/background.ts -------------------------------------------------------------------------------- /entrypoints/content/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/entrypoints/content/index.ts -------------------------------------------------------------------------------- /entrypoints/popup/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/entrypoints/popup/App.css -------------------------------------------------------------------------------- /entrypoints/popup/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/entrypoints/popup/App.tsx -------------------------------------------------------------------------------- /entrypoints/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/entrypoints/popup/index.html -------------------------------------------------------------------------------- /entrypoints/popup/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/entrypoints/popup/main.tsx -------------------------------------------------------------------------------- /entrypoints/popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/entrypoints/popup/style.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/privacy.html -------------------------------------------------------------------------------- /public/help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/public/help.css -------------------------------------------------------------------------------- /public/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/public/help.html -------------------------------------------------------------------------------- /public/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/public/help.js -------------------------------------------------------------------------------- /public/icon/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/public/icon/128.png -------------------------------------------------------------------------------- /public/icon/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/public/icon/16.png -------------------------------------------------------------------------------- /public/icon/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/public/icon/32.png -------------------------------------------------------------------------------- /public/icon/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/public/icon/48.png -------------------------------------------------------------------------------- /public/icon/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/public/icon/96.png -------------------------------------------------------------------------------- /public/icon/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/public/icon/icon.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/utils/core.ts -------------------------------------------------------------------------------- /utils/use-local-ext-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/utils/use-local-ext-storage.ts -------------------------------------------------------------------------------- /wxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcandy2/Select-like-a-Boss/HEAD/wxt.config.ts --------------------------------------------------------------------------------