github-url-detection
Advanced tools
Comparing version 6.0.2 to 6.1.0
@@ -66,2 +66,3 @@ export declare const is404: () => boolean; | ||
export declare const isEmptyRepo: () => boolean; | ||
export declare const isPublicRepo: () => boolean; | ||
export declare const isArchivedRepo: () => boolean; | ||
@@ -68,0 +69,0 @@ export declare const isBlank: () => boolean; |
@@ -345,2 +345,3 @@ const reservedNames = [ | ||
const isEmptyRepo = () => exists('[aria-label="Cannot fork because repository is empty."]'); | ||
const isPublicRepo = () => Boolean(isRepo() && $("#repository-container-header .Label").textContent.startsWith("Public")); | ||
const isArchivedRepo = () => Boolean(isRepo() && $("#repository-container-header .Label").textContent.endsWith("archive")); | ||
@@ -523,2 +524,3 @@ const isBlank = () => exists("main .blankslate"); | ||
isProjects, | ||
isPublicRepo, | ||
isQuickPR, | ||
@@ -525,0 +527,0 @@ isReleases, |
{ | ||
"name": "github-url-detection", | ||
"version": "6.0.2", | ||
"version": "6.1.0", | ||
"description": "Which GitHub page are you on? Is it an issue? Is it a list? Perfect for your WebExtension or userscript.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
34870
692