From c8f2de1c24bdffb41e9ae44a983942ebbe3b49ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Fri, 23 Jan 2026 13:03:44 +0100 Subject: [PATCH 1/3] Add support for GitHub Enterprise URLs in manifest --- chrome/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/manifest.json b/chrome/manifest.json index 43cd7b2..3f05134 100644 --- a/chrome/manifest.json +++ b/chrome/manifest.json @@ -17,7 +17,7 @@ }, "content_scripts": [ { - "matches": ["https://github.com/*", "https://gist.github.com/*"], + "matches": ["https://github.com/*", "https://gist.github.com/*", "https://*.ghe.com/*], "css": ["wide-github.css"], "js": ["wide-github-toggle.js"] } From 2f299fe55b162e0b320a24604a3a12e4a8ca215e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Fri, 23 Jan 2026 13:06:10 +0100 Subject: [PATCH 2/3] Fix formatting in manifest.json matches array --- chrome/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/manifest.json b/chrome/manifest.json index 3f05134..7abb64d 100644 --- a/chrome/manifest.json +++ b/chrome/manifest.json @@ -17,7 +17,7 @@ }, "content_scripts": [ { - "matches": ["https://github.com/*", "https://gist.github.com/*", "https://*.ghe.com/*], + "matches": ["https://github.com/*", "https://gist.github.com/*", "https://*.ghe.com/*"], "css": ["wide-github.css"], "js": ["wide-github-toggle.js"] } From 452337c32695963da717a134c98916441946a3a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Fri, 23 Jan 2026 13:07:29 +0100 Subject: [PATCH 3/3] Add support for GitHub Enterprise in manifest --- mozilla/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/manifest.json b/mozilla/manifest.json index 906f1f2..96d218d 100644 --- a/mozilla/manifest.json +++ b/mozilla/manifest.json @@ -22,7 +22,7 @@ }, "content_scripts": [ { - "matches": ["https://github.com/*", "https://gist.github.com/*"], + "matches": ["https://github.com/*", "https://gist.github.com/*", "https://*.ghe.com/*"], "css": ["wide-github.css"], "js": ["wide-github-toggle.js"] }