Chrome extension focused on improving day-to-day work in Jira Cloud. It adds lightweight workflow tools directly into Jira, keeps personal follow-up data in browser storage, and includes an internal analytics workspace for sprint and performance reporting.
- Adds copy-link actions to issue rows, native issue tables, board cards, and issue breadcrumbs.
- Opens a shared note drawer for any issue with personal notes, reminders, and tags.
- Shows tracking indicators when an issue already has notes, reminders, or tags.
- Displays time-in-status badges in list views, native tables, board cards, and issue headers.
- Injects Story Point summaries into Jira dashboard stats gadgets.
- Adds a custom manual menu in Jira's top navigation based on saved shortcuts.
- Optionally hides selected Jira header elements and auto-collapses the sidebar.
- Stores notes, reminders, tags, and cached issue metadata in
chrome.storage. - Schedules reminders through
chrome.alarmsand shows browser notifications. - Queues missed reminders and re-surfaces them when Jira is opened again.
- Lets you review, search, edit, copy, and delete tracked issues from the popup.
- Supports reusable colored tags shared across the extension.
- Reuses the same note drawer inside Analytics so sprint chips and Jira pages edit the same tracking data.
- Works with any number of Jira Cloud sites under
*.atlassian.net. - Detects and registers a site automatically when you open a Jira tab from that host.
- Keeps tracked data isolated per site, including notes, reminders, tags, analytics settings, sprint closure state, and manual menu shortcuts.
- Remains transparent in the single-site case: if only one Jira site is known, no extra selector is shown in the popup or Analytics Hub.
- When multiple Jira sites are known, the popup and Analytics Hub show a lightweight site selector so you can switch context explicitly.
- Settings also let you forget a stored site and remove its local PMsToolKit data for that Jira host only.
The popup opens a dedicated analytics page with four working areas:
Sprint Dashboard: active, closed, or future sprint view by developer, sprint selection, tag filtering, capacity settings, inline notes/reminders/tags, and optional GitHub PR enrichment.Team Performance: throughput, velocity, contributor summaries, and CSV export.Sprint Closure Report: closed sprint summary with carryover and capture-oriented output.History Exporter: JQL-driven CSV export of issue change history.
- Analytics supports a dedicated demo mode with mock Jira data only; it does not touch your real Jira tracking data.
- Demo sprints use dynamic dates so the active sprint always stays a few days away from completion.
- Demo issues include richer tracking examples: notes, reminders, tags, carryover work, and larger developer/task coverage.
- Demo GitHub enrichment includes mock PR states and labels such as
Draft,Merged, andQA Pass.
GitHub: optional PAT-based PR lookup. When enabled, the extension can surface PR status, labels, and draft/merged state in analytics and add PR buttons on Jira board cards when snapshot data exists.Zoom: adds aCopy Transcriptbutton on supported Zoom recording transcript pages.
The popup currently exposes toggles for:
- Jira UI cleanup
- Sidebar auto-collapse
- Manual Jira menu
- Copy-for-Slack actions
- Quick notes on lists and ticket pages
- Breadcrumb copy action
- Time-in-status indicators
- Board age indicators
- Story Point dashboard summaries
- Native table icons
- Zoom transcript copy
- GitHub PR linking
When more than one Jira site is known, the popup also exposes:
- A Jira site selector for tracked notes context
- A
Forget Sitecontrol under Settings to remove a stored site and its local data
When GitHub linking is enabled, the popup also stores a Personal Access Token in sync storage.
- Jira pages:
https://*.atlassian.net/* - Zoom recording pages:
https://*.zoom.us/rec/play/*,https://*.zoom.us/rec/share/* - GitHub API:
https://api.github.com/*
Main Chrome permissions used by the extension:
storagealarmsnotificationstabsclipboardWrite
Personal notes, reminders, tags, and cached issue metadata stay in browser storage. The extension uses Jira REST APIs from the logged-in browser session and GitHub API requests only when GitHub support is enabled. Demo mode keeps its mock tracking state separate from real Jira tracking data.
For Jira, browser storage is host-scoped. Two sites can have the same issue key or project key without colliding, because PMsToolKit stores tracking and analytics state per Jira hostname.
public/
manifest.json
content-loader.js
zoom-loader.js
src/
background/ Service worker for reminders, notifications, and PR snapshot messages
common/ Shared storage, Jira/GitHub helpers, tagging, issue metadata
content/jira/ Jira content scripts, UI injections, drawer, reminder modal
content/zoom/ Zoom transcript copy feature
popup/ Extension popup
pages/analytics/ Analytics Hub
pages/exporter/ Standalone Jira history exporter page
- Node.js
- npm
- Google Chrome or another Chromium browser with extension developer mode
npm installnpm run devnpm run buildThis generates the extension bundle in dist/.
- Open
chrome://extensions. - Enable
Developer mode. - Click
Load unpacked. - Select the project
dist/directory after building.
npm testThe repository currently includes Vitest coverage for core tracking, board flow, demo data generation, GitHub PR cache/snapshot logic, sprint dashboard helpers, and performance dashboard behavior.







