OstinUA/Duck-Bob
Batch-insert keyword tags into LinkedIn, Sales Navigator, and CRMs instantly. This extension automates repetitive typing by simulating real user input for curated lists of AdTech and Business terms across 6+ languages.
AdOps Keyword Mate
A productivity Chrome Extension designed for AdTech recruiters, UA managers, and Sales professionals. It automates the process of inserting batches of industry-specific keywords into search bars, filters, or CRM input fields.
The Problem
When searching for candidates or companies on platforms like LinkedIn Recruiter or Sales Navigator, you often need to type dozens of keywords (e.g., "Programmatic", "AdOps", "Monetization") and press "Enter" after each one to create tags. Doing this manually is slow and repetitive.
The Solution
AdOps Keyword Mate adds a context menu to your browser. simply right-click any input field, select a keyword category, and the extension will:
- Type the keyword into the field (simulating real user input).
- Press Enter automatically to lock the tag.
- Repeat for every keyword in the selected group.
Features
- Multi-Profile Support: Switch between different keyword sets via the popup menu.
- Localized Dictionaries: Includes preset AdTech terminologies for:
- 🇺🇸 English (General & Categorized)
- 🇪🇸 Spanish
- 🇫🇷 French
- 🇩🇪 German
- 🇵🇹 Portuguese
- 🇵🇱 Polish
- Smart Input Simulation: Uses
InputEventandKeyboardEvent(Enter key) to ensure compatibility with complex React/Angular forms that require physical keystrokes to register data. - Context Menu Integration: Accessible via Right-Click -> "Вставлятор текста".
Profiles Included
You can switch the active profile by clicking the extension icon in the toolbar.
- Main (English): Comprehensive list including Programmatic, Marketing, Business, and C-Level terms.
- Relevant: A curated list focusing on core AdOps/Monetization roles.
- Combined: Aggregated list of the top two profiles.
- Localized Profiles: Translated industry terms for specific geo-targeting (Spain, France, Germany, Brazil/Portugal, Poland).
Installation (Developer Mode)
- Clone or download this repository.
- Open Chrome and navigate to
chrome://extensions. - Enable Developer mode (toggle in the top right corner).
- Click Load unpacked.
- Select the folder containing the extension files.
Usage
- Click the extension icon in the Chrome toolbar.
- Select the desired profile (e.g., "🇪🇸. Spanish" or "Main Text").
- Go to your target website (e.g., LinkedIn).
- Click inside the search/filter input field.
- Right-click the input field.
- Hover over "Вставлятор текста =>" and select the specific category (e.g., "Programmatic" or "Marketing x Ads").
- Watch as the extension automatically types and adds the tags for you.
Technical Details
- Permissions:
contextMenus: To add the right-click functionality.scripting: To inject the typing logic into the active tab.storage: To save your preferred profile selection.
- Event Logic:
// Simulates typing and pressing Enter const inputEvent = new InputEvent("input", { inputType: "insertText", data: word }); el.dispatchEvent(inputEvent); el.dispatchEvent(new KeyboardEvent("keydown", { key: "Enter", keyCode: 13 }));