P.

Word Salad Sifter

Uncovering The Important Parts In Job Postings

Screen view of Word Salad Sifter

Tools

Figma, React, TypeScript, Webpack, Anthropic SDK, Google Docs API, Google Drive API, Chrome Extension API


My Role

Conception, Planning, Design, Development, Approvals Process, Deployment

Problem

Created by Humans, Influenced by Machines

With the infusion of automation into the talent acquisition world, job seekers need to be more fastidious about creating keyword-focused resumes/cover letters in order to stand out. This is in addition to their task of illuminating personal aspects—the kind that shine through in one's writing and help the applicant stand out from the crowd. In concept, this task is not difficult. It is, however, time-consuming. It requires the job seeker to most likely read through verbose, boilerplatey language, while trying to pay attention to what words might be keywords, what skills are needed, what the tone of the job posting is…etc. Complicating matters is the fact that job seekers need to fill out an inordinate amount of applications to compensate for how many people apply to each job.

Approach

Baked into the Browser, Available with a Right-Click

As a Chrome extension, Word Salad Sifter gains native access to webpage content that is otherwise off-limits. This integration eliminates the need for a standalone application while maintaining a minimal browser footprint. What's more, this lower-level integration allows users to operate the app through a simple, right-click menu option.

Continuous Feedback. Start to Finish

Word Salad Sifter keeps users informed throughout the processing task. Because processing time varies by text length and other factors, we calculate a completion time per job and provide feedback about the task's current state.

Bring Your Own Voice

While an LLM could generate keyword-optimized resumes and cover letters from job postings, such documents lack the authentic voice that makes each candidate unique. Instead, Word Salad Sifter provides an easily scannable framework that equips users with the content to craft a personally tailored, yet targeted application.

An example of the output that Word Salad Sifter appends to your Google Doc

High-Level App Flow

The three systems that comprise Word Salad Sifter:

  1. Google O-Auth - This gives us access to the user's Google Docs, and browser integrations (tabs, script running, side panel, context menus)
  2. Google Docs API / Google Drive API - Copying/duplication requires Google Drive and populating requires Google Docs API
  3. Anthropic API - Processing and interpretation of the job description

Challenges/Considerations

Bringing Order to Chaos

Job postings come in many formats and structures. This makes normalization and standardization crucial to create a predictable, usable product. After evaluating various approaches like resume annotations and narrative summaries, we chose tabular data presentation. This format transforms varied job listings into a consistent, scannable matrix—ensuring that every parsed posting follows a predictable, standardized structure regardless of its original format.

Determining Essential Information

The opacity of hiring processes presents a unique challenge: without application outcome feedback, it's impossible to empirically determine what information truly impacts success. To address this, we developed a comprehensive yet focused set of data points relevant across industries:

  • Company name and job title
  • Education requirements
  • Required software knowledge
  • Core job themes
  • Key requirements
  • Essential soft skills
  • Prioritized critical skills
  • Experience requirements
  • Cultural indicators and tone
  • Position's unique elements
  • Critical keywords and phrases
  • Special application instructions
  • Source URL

Platform Considerations: Message Passing and State Management

Chrome extension architecture presents unique challenges in data flow and persistence. The extension operates in two distinct contexts: a view layer (for UI components like popups and side panels) and a background service worker. Since the service worker can't directly access the DOM, any interaction between these contexts requires orchestration through Chrome's internal messaging.

This architectural split means temporary data gathered in the view layer—like user selections or analysis results—will be lost when panels are closed unless explicitly preserved. To maintain state, strategic implementation of Chrome's storage API was employed, ensuring crucial information persists across UI sessions."