This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name HN Article Search | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0.0 | |
| // @match *://*/* | |
| // @grant GM_registerMenuCommand | |
| // @grant GM_unregisterMenuCommand | |
| // @grant GM_openInTab | |
| // @grant GM_xmlhttpRequest | |
| // @connect hn.algolia.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| --icon-size: 18px; | |
| --icon-gap: 8px; | |
| --title-padding-left: calc(var(--icon-size) + var(--icon-gap)); | |
| --nav-folder-icon-color: currentColor; | |
| --nav-file-icon-color: currentColor; | |
| /* Use Obsidian accent color for the icons | |
| --nav-folder-icon-color: hsl(var(--accent-h), var(--accent-s), var(--accent-l)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name HN + | |
| // @match https://*.ycombinator.com/* | |
| // @grant none | |
| // @version 2.5.0 | |
| // @author overflowy@riseup.net | |
| // @description Adds favicons to HN links, navigation menu for less known sections, and injects the about section into HN's native user hovercard | |
| // @inject-into content | |
| // ==/UserScript== |