A Firefox extension that highlights and scores job listings based on your custom keyword list to help filter job postings.
- Keyword Highlighting: Automatically highlights all instances of your keywords on job listing pages
- Scoring System: Displays a score showing how many keywords appear on the page
- Color-Coded Feedback: Visual indicator that changes color based on keyword match ratio (green = good, red = high matches)
- Score Overlay: Toggle a floating overlay on the page showing your keyword score
- Import/Export: Easily save and load keyword lists from text files
- Persistent Storage: Your keywords are saved automatically and persist across browser sessions
- Enter your desired keywords (programming languages, frameworks, skills, etc.)
- Highlight keywords on the current page - the extension will count matches
- View your score in the popup or toggle the on-page overlay
- Use the Options page to manage, import, and export your keyword lists
-
Clone or download this repository to your computer
git clone <repository-url> cd JobScore -
Open Firefox Add-ons Manager
- Type
about:addonsin Firefox's address bar and press Enter - OR click the menu button (☰) and select "Add-ons and themes"
- Type
-
Enable debugging
- Click the gear icon (⚙️) in the Add-ons Manager
- Select "Debug Add-ons"
- OR navigate directly to
about:debugging
-
Load the extension
- Click "This Firefox" in the left sidebar
- Click "Load Temporary Add-on..."
- Navigate to the
JobScorefolder and selectmanifest.json - The extension will appear in your extensions list and toolbar
- Enter keywords in the text area (one per line)
- Click Highlight Keywords to scan the current page and show matches
- Click Clear Highlights to remove highlights
- Click Toggle Score Overlay to show/hide the floating score indicator
- Click Open Options to access the full settings page
Access the full settings by:
- Clicking Open Options in the popup, OR
- Right-clicking the extension icon and selecting "Options"
In the Options page you can:
- Manage Keywords: Add, edit, or remove keywords
- Save Keywords: Click "Save Keywords" to store your current list
- Export Keywords: Download your keyword list as a
.txtfile - Import Keywords: Upload a previously exported
.txtfile with your keywords
When importing/exporting keywords, use a plain text file (.txt) with one keyword per line:
javascript
python
react
web development
remote
Currently no keyboard shortcuts. All features are accessible through the popup and options page.
- Make sure you've clicked "Highlight Keywords" after entering your keywords
- Check that the page has loaded completely
- Some websites may block content injection - the extension works on most job boards
- If using a temporary add-on, ensure it hasn't expired (reload if needed)
- Click "Highlight Keywords" first to scan the page
- The score updates only when you actively highlight
- Temporary add-ons in Firefox are removed when Firefox restarts
- Reload the temporary add-on from
about:debuggingif needed - Check Firefox's Browser Console (Ctrl+Shift+J) for any error messages
- Manifest Version: 2
- Permissions: activeTab, storage, downloads
- Storage: Uses Firefox's local storage API (per-user, per-device)
- Compatibility: Firefox 48+ (WebExtensions API)
JobScore/
├── manifest.json # Extension configuration
├── popup.html # Popup interface
├── popup.js # Popup logic
├── options.html # Settings page
├── options.js # Settings page logic
├── content.js # Page content injection script
├── background.js # Background service worker
├── highlight.css # Styling for highlighted text
├── README.md # This file
└── LICENSE # License information
- Content Script (
content.js): Injects into every webpage and listens for highlight commands - Popup (
popup.js): Provides quick access to highlighting, clearing, and settings - Background Script (
background.js): Handles file downloads for export functionality - Options Page (
options.js): Full-featured settings interface for managing keywords
See LICENSE file for details.
Feel free to submit issues or improvements!
1.0