A Chrome extension that automatically converts JIRA ticket references (e.g., PROJ-123) into clickable links on GitHub pages.
- What It Does
- Features
- Installation
- Usage
- Configuration
- JIRA Ticket Pattern
- Files
- How It Works
- Privacy
- Troubleshooting
- License
When browsing GitHub (pull requests, issues, comments, etc.), this extension automatically detects JIRA ticket references in the text and converts them into clickable links that open directly in your JIRA instance.
Example:
- Text: "Fixed bug in PROJ-123"
- Result: "Fixed bug in PROJ-123" (clickable link)
- 🔍 Automatically detects JIRA ticket patterns (e.g.,
PROJ-123,FRONT-404) - 🔗 Converts them to clickable links
- 🎯 Works on all GitHub pages (PRs, issues, comments, READMEs)
- ⚡ Real-time linking as content loads (handles GitHub's dynamic page updates)
- 🎨 Styled links in JIRA blue (#0052cc)
- 🚫 Smart enough to skip linking inside code blocks, links, and input fields
- Clone or download this repository
- Open Chrome and navigate to
chrome://extensions/ - Enable "Developer mode" (toggle in top-right corner)
- Click "Load unpacked"
- Select the
chromedirectory from this repository - The extension is now installed!
- Clone or download this repository
- Open Firefox and navigate to
about:debugging#/runtime/this-firefox - Click "Load Temporary Add-on"
- Navigate to the
firefoxdirectory and select themanifest.jsonfile - The extension is now installed!
Note: For Firefox, temporary add-ons are removed when you close the browser. For permanent installation, you would need to sign the extension through Mozilla Add-ons.
- Install the extension following the steps above
- Click the extension icon in your browser toolbar
- Enter your JIRA URL (e.g.,
https://your-company.atlassian.net/browse/) - Click "Save"
- Visit any GitHub page - JIRA ticket references will now be clickable links!
- Chrome: Right-click the extension icon → "Options", OR go to
chrome://extensions/→ "Extension options" - Firefox: Right-click the extension icon → "Manage Extension" → "Options", OR go to
about:addons→ "Options"
Quick configuration:
Simply click the extension icon in your browser toolbar and enter your JIRA URL. The popup will:
- Auto-format your URL (adds
/browse/if needed) - Validate the URL
- Save instantly
- Auto-close after saving
Example JIRA URLs:
https://your-company.atlassian.net/browse/https://jira.company.com/browse/
The URL is stored securely in browser sync storage and will sync across your browsers when signed in.
The extension recognizes JIRA tickets matching this pattern:
- Starts with 2+ uppercase letters (can include numbers)
- Followed by a hyphen (-)
- Followed by one or more digits
Valid examples:
PROJ-123ABC-1FRONT-404API2-999
Invalid examples:
proj-123(lowercase)P-123(only one letter)PROJ123(no hyphen)
manifest.json- Extension configuration (Manifest V3)content.js- Main script that performs the linkingpopup.html- Quick setup popup (click extension icon)popup.js- Popup logicoptions.html- Full settings pageoptions.js- Settings page logic
manifest.json- Extension configuration (Manifest V2)content.js- Main script that performs the linking (Firefox-compatible)popup.html- Quick setup popup (click extension icon)popup.js- Popup logic (Firefox-compatible)options.html- Full settings pageoptions.js- Settings page logic (Firefox-compatible)
README.md- This file
- The content script (
content.js) loads on all GitHub pages - It scans the page for text matching the JIRA ticket pattern
- When found, it wraps the text in an anchor tag linking to your JIRA instance
- A MutationObserver monitors for new content (GitHub uses dynamic page loading)
- New content is automatically processed as it appears
This extension:
- ✅ Only runs on GitHub.com
- ✅ Does not collect or transmit any data
- ✅ Stores your JIRA URL locally using browser sync storage
- ✅ Your JIRA URL syncs across your browsers (when signed in)
- ✅ All processing happens locally in your browser
- ✅ Works identically in Chrome and Firefox
Links aren't appearing:
- Make sure the extension is enabled in your browser's extension manager
- Check that you've configured a JIRA URL in the extension options
- Reload the extension after making any changes
- Hard refresh the GitHub page (Cmd+Shift+R on Mac, Ctrl+Shift+R on Windows)
- Open DevTools console (F12) and check for any errors
Need to change your JIRA URL:
- Open extension options and update the URL, then reload GitHub pages
Extension options not showing:
- Chrome: Go to
chrome://extensions/, find the extension, and click "Extension options" - Firefox: Go to
about:addons, find the extension, and click "Options"
Firefox: Extension disappears after browser restart:
- Temporary add-ons in Firefox are removed when the browser closes. For permanent installation, the extension needs to be signed through Mozilla Add-ons or you need to use Firefox Developer Edition/Nightly with
xpinstall.signatures.requiredset tofalseinabout:config.
MIT