We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 207f85b commit 792076bCopy full SHA for 792076b
github-image-preview.user.js
@@ -1,6 +1,6 @@
1
// ==UserScript==
2
// @name GitHub Image Preview
3
-// @version 2.0.5
+// @version 2.0.6
4
// @description A userscript that adds clickable image thumbnails
5
// @license MIT
6
// @author Rob Garrison
@@ -192,7 +192,7 @@
192
// add link color
193
const title = (type = "file-name") =>
194
`<h4
195
- class="ghip-${type} ${(url ? "text-blue" : "")}"
+ class="ghip-${type}"
196
title="${fileName}"
197
>${fileName}</h4>`;
198
@@ -201,7 +201,7 @@
201
content = url ?
202
updateTemplate(
203
url,
204
- "<h4 class='text-blue ghip-up-tree'>··</h4>"
+ "<h4 class='ghip-up-tree'>··</h4>"
205
) : "";
206
} else if (imgExt.test(url)) {
207
// *** image preview ***
0 commit comments