Open in GitHub for Graphite

One click from a Graphite pull request to the same pull request on GitHub.

Graphite's own extension adds a View in Graphite link to GitHub pull request pages. Nothing does the reverse, so when you're reviewing in Graphite and need GitHub for a check's raw logs, a merge queue detail, or a permalink to paste somewhere, you end up retyping the URL by hand.

Add to Chrome Source on GitHub

What it adds

All three are ordinary links, so cmd-click and middle-click open a new tab exactly as you'd expect.

A Graphite pull request page with the extension's links: one beside the PR number, one on each stack row, and a floating pill in the bottom-left corner.

Demo

How it works

Graphite's pull request path is GitHub's own path behind a /github prefix, so the mapping is a plain string rewrite. No API call, no sign-in, no network request of any kind, and nothing stored. Both of Graphite's URL shapes are handled:

ShapeWhere it appears
/github/OWNER/REPO/pull/8730address bar, comment permalinks
/github/pr/OWNER/REPO/8730/slugstack row links

Privacy

No data collection of any kind. No analytics, no telemetry, no network requests, no storage. The extension runs only on app.graphite.com and app.graphite.dev, and does nothing anywhere else. Its only permission is the content-script match on those two hosts.

Add to Chrome Source on GitHub Report an issue