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 Perplexity | |
| // @version 2026-03-02 | |
| // @match https://www.perplexity.ai/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=perplexity.ai | |
| // @grant GM_addStyle | |
| // ==/UserScript== | |
| GM_addStyle(` | |
| h1, h2, p, span { font-family: monospace !important; } |
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 npmjs to npmx redirect | |
| // @match https://www.npmjs.com/package/* | |
| // @match https://npmjs.com/package/* | |
| // @icon https://npmx.dev/favicon.svg | |
| // @grant none | |
| // @version 0.1 | |
| // @run-at document-start | |
| // ==/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
| const STORE_KEYS = new Map<string, Set<string>>() | |
| /** | |
| * Создаёт новую группу ключей и возвращает функцию для добавления ключей в неё. | |
| * | |
| * @param group Название группы | |
| * @returns Функция, добавляющая уникальные ключи в группу | |
| * @throws Ошибка, если группа уже существует | |
| */ | |
| export function createStoreKey<Group extends string>(group: Group) { |
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
| https://crashmax.ru | |
| https://editor.crashmax.ru | |
| https://atestacraft.ru | |
| https://worlds.atestacraft.ru | |
| https://hueputalo.vercel.app/bishep | |
| https://twitch-goal.vercel.app | |
| https://crashmax.vercel.app | |
| https://telegram-feedback.vercel.app | |
| https://twitch-bot-guess-word-game-widget.vercel.app | |
| https://ie.vercel.app |
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 Global Variables | |
| // @version 2025-12-19 | |
| // @author crashmax | |
| // @match *://*/* | |
| // @grant none | |
| // @run-at document-body | |
| // ==/UserScript== | |
| function getMemoryInfo() { |
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 Steam (Fix game covers on Steam profile) | |
| // @version 2025-12-08 | |
| // @author crashmax | |
| // @match https://steamcommunity.com/id/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=steamcommunity.com | |
| // @grant none | |
| // ==/UserScript== | |
| const covers = document.querySelectorAll('img.game_capsule') |
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
| { | |
| "extends": "@vue/tsconfig/tsconfig.dom.json", | |
| "compilerOptions": { | |
| "composite": true, | |
| "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", | |
| "lib": [ | |
| "ES2022", | |
| "DOM", | |
| "DOM.Iterable" | |
| ], |
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
| [ | |
| { | |
| "value": "Africa/Abidjan", | |
| "label": "(GMT+00:00) Africa/Abidjan" | |
| }, | |
| { | |
| "value": "Africa/Accra", | |
| "label": "(GMT+00:00) Africa/Accra" | |
| }, | |
| { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| <template> | |
| <div class="collapsible" :class="{ open }"> | |
| <div class="collapsible-content"> | |
| <slot /> | |
| </div> | |
| </div> | |
| </template> | |
| <script setup lang="ts"> | |
| defineProps<{ |
NewerOlder