- Scrape Tinder profiles
- Sorting by distance
- TODO: Autolikes
- TODO: Autoresponses
- TODO: Data Exports
- Have an idea? Open issue->feature
npx degit kostia7alania/tinder-parser-bot my-webext
cd my-webext
npm install
npm run dev- Build:
npm run build - Dev (Chrome/Firefox):
npm run dev:chrome/npm run dev:firefox - Build (Chrome/Firefox):
npm run build:chrome/npm run build:firefox
Load the extension from the dist/chrome or dist/firefox folder in your browser.
To add shadcn-vue components to your extension:
npx shadcn-vue@latest init
npx shadcn-vue@latest add button
npx shadcn-vue@latest add input
npx shadcn-vue@latest add cardThe components will be automatically configured and ready to use in your Vue files.
const { data: syncSettings, promise } = useBrowserSyncStorage("settings", {
theme: "dark",
notifications: true,
preferences: { language: "en", fontSize: 14 },
})
const { data: userProfile } = useBrowserLocalStorage("profile", {
name: "John Doe",
lastLogin: null,
favorites: ["item1", "item2"],
})
console.log(syncSettings.value.theme) // 'dark'
console.log(userProfile.value.name) // 'John Doe'This template includes shadcn-vue for additional high-quality, accessible components. The project is pre-configured with:
- Component Installation: Use
npx shadcn-vue@latest add <component>to add components - Automatic Integration: Components work seamlessly with existing Tailwind CSS setup
- TypeScript Support: Full type safety for all shadcn-vue components
- Customizable: Easy theming and customization through CSS variables
npx shadcn-vue@latest add button<template>
<Button
variant="default"
size="sm"
@click="handleClick"
>
Click me
</Button>
</template>
<script setup lang="ts">
import { Button } from "@/components/ui/button"
function handleClick() {
console.log("Button clicked!")
}
</script>- Vite Plugins: unplugin-vue-router, unplugin-auto-import, unplugin-vue-components, unplugin-icons, unplugin-turbo-console, @intlify/unplugin-vue-i18n
- Vue Plugins: Pinia, VueUse, Notivue, Vue-i18n
- UI: Nuxt/UI, shadcn-vue, Tailwind CSS 4
- WebExtension: webext-bridge, webextension-polyfill
- Utilities: Marked (for markdown rendering)
- Coding Style: TypeScript, ESLint, Prettier
.
βββ dist/ # Built extension files (chrome/firefox)
βββ public/ # Static assets (icons, etc.)
βββ scripts/ # Build/dev scripts
βββ src/ # Source code
β βββ assets/ # Global assets
β βββ background/ # Background scripts
β βββ components/ # Shared Vue components
β βββ composables/ # Vue composables (hooks)
β βββ content-script/ # Content scripts
β βββ locales/ # i18n files
β βββ offscreen/ # Offscreen pages
β βββ stores/ # Pinia stores
β βββ types/ # TypeScript definitions
β βββ ui/ # UI pages (popup, options, etc.)
β βββ utils/ # Shared utilities
βββ manifest.config.ts # Base manifest config
βββ vite.config.ts # Base Vite config
βββ tailwind.config.cjs # Tailwind CSS config
βββ package.json # Dependencies & scripts- TypeScript with strict types
- ESLint & Prettier enforced
- Vue 3 Composition API (
<script setup>) - File-based routing and auto-imports
π For detailed coding guidelines and AI agent rules, see AGENTS.md
If you find this project useful, please consider supporting the author and starring β the repository.
|
Muhammad Ubaid Raza |
Dreamliner |
Jihoon Yi |
Diego Ponciano |
igorfz |
hi2code |
Null |

