The issue has been closed
On hover over the Files changed tab of the page for a pull request, show a popup with the list of files.
For example, when I hover of the Files changed tab of https://github.com/mdn/browser-compat-data/pull/6958, I get a popup showing:
mathml/elements/math.json
mathml/elements/mglyph.json
mathml/elements/mlabeledtr.json
mathml/elements/mo.json
mathml/elements/mspace.json
mathml/elements/mstyle.json
mathml/elements/mtable.json
mathml/elements/mtd.json
mathml/elements/mtr.json
Rationale: It’d be convenient if I didn’t need to actually open the https://github.com/mdn/browser-compat-data/pull/6958/files page just to see the list of which files got touched.

posted by fregante over 4 years ago 
Maybe it's just:
const tab = select('…')
const getList = cache.function(async () => {
const data = await api.v4(`…`);
return data…files;
});
const updateTab = async () => {
tab.title = (await getList()).join('\n');
}
if (looseParseInt(tab) < 11) {
tab.title = 'Loading…'
tab.addEventListener('mouseenter', updateTab, {once: true});
}
Cross-browser testing needed
posted by fregante over 4 years ago
..with the following query
{
repository(owner: "sindresorhus", name: "refined-github") {
pullRequest(number: 3774) {
files(first: 10) {
nodes {
path
}
}
}
}
}
posted by yakov116 over 4 years ago
@fregante You want to load the list on open? Or wait for user to hover?
posted by yakov116 over 4 years ago
posted by fregante over 4 years ago 
posted by yakov116 over 4 years ago 
Let's see it and maybe we can get more comments from Sindre
posted by fregante over 4 years ago
posted by yakov116 over 4 years ago 

Looks good for the most part, but Safari doesn't update the tooltip until you move the cursor, which kills the feature for me:
It probably isn't a very difficult feature if the title
attribute can be updated on the fly on every browser.
posted by fregante over 4 years ago
I just checked, this isn't fixed by dropping the "Loading" part. Safari only creates/updates the tooltip when the mouse moves. I tried dispatching mousemove/enter
events but nothing happened. Can you find a non-completely-hacky way to implement it via tooltipped
?
posted by fregante over 4 years ago
Can you find a non-completely-hacky way to implement it via tooltipped
?
No luck.
posted by yakov116 over 4 years ago
Saving your code in this commit: 0d8be65a26ee5c6005e5e5a8efdf5fc4b23761e2
But closing and deleting the branch
posted by fregante about 4 years ago