The issue has been closed

posted by payne911 over 4 years ago 
As I said previously, this is not something most people need most of the time, so it won't be added to every page on every repository. The forks list is where I'd expect this feature to be found, and maybe also: https://github.com/sindresorhus/refined-github/network
I'm imagining it in the top-right corner of each page (still not in the header) but exploration welcome
posted by fregante over 4 years ago
Okay, I might have some time to work on this. However, looking at the refined-github
code-base is a bit daunting.
Can you point me toward a feature which would resemble what I'll be trying to achieve?
posted by payne911 about 4 years ago
posted by fregante about 4 years ago 
For the include: [ ... ]
, I can't seem to find a constant which points to the Insights -> Forks
or Insights -> Network
pages.
Am I the first one implementing a feature for those? If so, where/how should I add that constant?
posted by payne911 about 4 years ago
posted by fregante about 4 years ago 
import features from '.';
function init(): void {
console.log("TEST")
}
const pageDetect = require('github-url-detection');
const isForksPage = (url: URL | HTMLAnchorElement | Location = location): boolean => pageDetect.getRepo(url)?.path === 'network/members';
void features.add(__filebasename, {
include: [
isForksPage
],
init
});
This should print something in the Console
when I open the Forks
page, right? @fregante
This is what I see:

posted by payne911 about 4 years ago
Make sure you’re also including that file in refined-github.ts
and use import
instead of require
posted by fregante about 4 years ago
Make sure you’re also including that file in refined-github.ts
Done, thanks!
use import
instead of require
I tried that initially, but it would give me an error:

Just realized getRepo
isn't export
ed. Through utils
, it works. Thanks!
const isForksPage = (url: URL | HTMLAnchorElement | Location = location): boolean => pageDetect.utils.getRepoPath(url) === 'network/members';
posted by payne911 about 4 years ago
Any thoughts on this preliminary sneak-peek ?


posted by payne911 about 4 years ago