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
| import { z } from "zod"; | |
| /** | |
| * Represents a value that can be converted to a string using valueOf() | |
| * Typically used for enums or other string-like types | |
| */ | |
| interface EnumValue { | |
| valueOf(): string; | |
| } |
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 Kagi Grouped Result Enhancer | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.2 | |
| // @description Enhance grouped results in Kagi with visible URLs | |
| // @author Eiko Wagenknecht | |
| // @match *://*kagi.com/* | |
| // @grant none | |
| // ==/UserScript== |
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
| "superkeys": [ | |
| { | |
| "actions": [ | |
| 41, | |
| 1, | |
| 1, | |
| 1, | |
| 1 | |
| ], | |
| "name": "Dummy", |