A Chrome extension that uses Groq AI to generate and autofill your entire Fiverr presence — gig pages, seller profile, work experience, bio, and skills — all from one click.
- AI Title — Compelling "I will..." titles under 80 characters
- Auto Tags — 5 relevant gig search tags
- 3-Tier Packages — Basic / Standard / Premium with unique names, Fiverr-style descriptions ("This [Name] package includes...", 75–90 chars), and realistic prices
- Formatted Description — Question hook, intro, "I can develop" bullets, "Why choose me?" bullets, closing, and CTA — matches Fiverr's own recommended structure
- 5 FAQs — Buyer-voiced questions with personal, specific, first-person answers (delivery, revisions, requirements, deliverables, experience)
- Buyer Requirements — Auto-fills and marks required
- Per-Gig Niche Input — A niche bar is injected directly on each gig page; type a different niche per gig without touching the popup
- Bio / About — Professional seller bio personalized with your name, years of experience, and country
- Work Experience — Full entry (title, company, employment type, date, description) auto-filled and submitted. Company is picked from your list without bias, start date is randomized 3–5 years back, and descriptions never mention ratings, prices, or platform metrics
- Skills — Picks 6 relevant skills from Fiverr's actual skill database, auto-selects each with experience level
- Stop Button — Every AI button becomes a Stop button while running; click to abort mid-task
- Human-like Typing — Character-by-character input with natural delays
- Multi-key Rotation — Up to 3 Groq API keys, auto-rotated on rate limit
- Bundled Skill & Company Lists — 360+ real Fiverr skills and common companies ship with the extension — no fetching required
- Profile Info — Save your name, years of experience, and country once; used across bio, work exp, and skills generation
-
Clone this repository
git clone https://github.com/NadirAliOfficial/fiverr-ai-autofill.git
-
Open Chrome →
chrome://extensions -
Enable Developer mode (top-right toggle)
-
Click Load unpacked → select the
fiverr-ai-autofillfolder -
The ✦ icon appears in your Chrome toolbar
- Click the extension icon → API Keys tab
- Paste your Groq API key (free at console.groq.com)
- Click ◆ Save Keys
- Go to Keywords tab → fill in your profile info (name, years, country) and profile niche
- Click ◆ Save Profile
- Go to Selling → Gigs → Create a New Gig (or edit existing)
- A ◆ Niche bar appears at the top of the editor — type your gig niche there
e.g.
logo design, branding, vector art - Click any ◆ Generate button to fill that field
- Review and click Save & Continue
- ◆ Generate About — fills your bio section
- ◆ Generate Work Experience — opens the modal and fills every field automatically
- ◆ Add Skills — selects 6 relevant skills from Fiverr's dropdown
| Page | Fields Filled |
|---|---|
| Overview | Title + 5 Tags |
| Pricing | Package names, descriptions, prices |
| Description & FAQ | Formatted description + 5 FAQs |
| Requirements | Buyer requirements |
| Profile → About | Bio (personalized) |
| Profile → Work Experience | Full entry with company, dates, description |
| Profile → Skills | 6 relevant skills with experience level |
fiverr-ai-autofill/
├── manifest.json # MV3 config — extension name, permissions
├── background.js # Service worker — Groq API calls, key rotation
├── content.js # Injected into Fiverr — all AI buttons and automation
├── styles.css # Injected button and niche bar styles
├── popup.html # Popup UI — Profile, API Keys, Model tabs
├── popup.js # Popup logic — save/load profile and keys
├── fetch-lists.js # One-time console script to fetch skills from Fiverr API
├── data/
│ ├── skills.json # 360+ real Fiverr skills (bundled)
│ └── companies.json # Common company names for work experience
└── icons/
├── icon16.png
├── icon48.png
└── icon128.png
User fills niche bar on gig page (or profile niche in popup)
↓
◆ Generate button clicked
↓
content.js builds prompt with niche + profile info (name, years, country)
↓
background.js calls Groq API (llama-3.3-70b-versatile)
↓
Response is typed character-by-character into Fiverr's fields
using React-compatible events (nativeInputValueSetter + InputEvent),
or inserted as formatted HTML into Fiverr's Quill editor via execCommand,
so Fiverr registers it as real user input
| Layer | Tech |
|---|---|
| Extension | Chrome MV3, Vanilla JS |
| AI | Groq Cloud — llama-3.3-70b-versatile |
| Storage | chrome.storage.sync (keys/model) + chrome.storage.local (profile/skills) |
| Skill data | Fiverr autocomplete API (pre-fetched, bundled as JSON) |
- API keys are stored in
chrome.storage.sync— sent only toapi.groq.com, never anywhere else - Groq's free tier handles hundreds of requests per day at no cost
- The niche bar on gig pages is per-session — it doesn't persist between page loads (intentional, since each gig is different)
- Skills and companies are bundled with the extension — no internet fetch needed on first run
- Only requests the
storagepermission — noactiveTabor broad host access beyondfiverr.comand the Groq API
MIT — free to use, modify, and distribute.
Built by Nadir Ali Khan · GitHub