Skip to content

Instantly share code, notes, and snippets.

View malys's full-sized avatar

Malys malys

View GitHub Profile
@malys
malys / userscript.js
Created January 16, 2026 16:47
[Filter Glance] #userscript #glance
// ==UserScript==
// @name Glance filter
// @namespace Violentmonkey Scripts
// @match https://glance.l.malys.ovh/*
// @grant none
// @version 1.0
// @author -
// @description 04/11/2025 20:06:32
// ==/UserScript==
@malys
malys / userscript.js
Last active January 16, 2026 16:50
[Open all links gmail] #gmail #userscript
// ==UserScript==
// @name Gmail all links
// @namespace Violentmonkey Scripts
// @version 3.0
// @description Ajouter un button pour ouvrir tous les lients
// @author Vous
// @match https://mail.google.com/mail/u/*
// @grant GM_xmlhttpRequest
// @grant GM_openInTab
// @grant GM_addStyle
@malys
malys / userscript.js
Last active January 16, 2026 16:45
[Open all changedetection ] open unread links in new tab and change state to read #changedetection #userscript
// ==UserScript==
// @name ChangeDetection
// @namespace Violentmonkey Scripts
// @match https://changedetection*
// @grant none
// @version 1.1
// @author -
// @description 02/08/2024 18:45:57
// @downloadURL https://gist.githubusercontent.com/malys/ad119aeeab2b627ee44f3cefc3788cbd/raw/userscript.js
// @updateURL https://gist.githubusercontent.com/malys/ad119aeeab2b627ee44f3cefc3788cbd/raw/userscript.js
@malys
malys / userscript.js
Last active January 16, 2026 16:40
[minimal view vikunja] minimal view #userscript #violentmonkey #vikunja
// ==UserScript==
// @name Vikunja Auto Minimal View
// @namespace http://tampermonkey.net/
// @version 0.7
// @description Shows only task detail in minimal view, removing all other page elements including top bar
// @author You
// @match https://*/tasks/*
// @grant none
// ==/UserScript==
@malys
malys / userscript.js
Last active January 16, 2026 16:41
[minimal view outline] minimal view #userscript #violentmonkey #outline
// ==UserScript==
// @name Outline Minimal View
// @namespace http://tampermonkey.net/
// @version 3.1
// @description Show minimal view of Outline documents - title and body only
// @author You
// @match https://*/doc/*
// @grant none
// ==/UserScript==
@malys
malys / userscript.js
Last active January 16, 2026 16:40
[Kanban vikunja] kanban enhancer #userscript #violentmonkey
// ==UserScript==
// @name Vikunja Kanban enhancer
// @description Auto Label by Column + Purge Archive + Bulk move + Quick filters (import, export, merge) + Task templates
// @namespace malys
// @version 7.0
// @match https://TODO/projects/*
// @match https://try.vikunja.io/*
// @grant none
// @downloadURL https://gist.githubusercontent.com/malys/34cfe07c83fb804d27087127e2d63149/raw/userscript.js
// @updateURL https://gist.githubusercontent.com/malys/34cfe07c83fb804d27087127e2d63149/raw/userscript.js
@malys
malys / style.md
Created August 21, 2025 17:54
[dark style] #silverbullet
pageDecoration
prefix disableTOC
🎄
true

Source

html {
@malys
malys / md-advanced-tables.lua
Last active August 21, 2025 17:48
[md advanced tables] advanced md table management #silverbullet #lua
```space-lua
-- To enable debug logs, set LOG_ENABLE to true
local LOG_ENABLE = true
local TEXT_EDITOR = nil
local EDITOR = nil
local function debug_log(message)
if LOG_ENABLE then
js.log("[DEBUG] " .. message)
end
@malys
malys / flow.json
Created January 22, 2025 19:05
[NodeRed plublishing] #xonsh #publish #flow #node #autmation
[
{
"id":"b3f710d3656ec0bd",
"type":"exec",
"z":"73f57341a6bdef33",
"command":"rm -f /tmp/cookies.txt",
"addpay":"",
"append":"",
"useSpawn":"false",
"timer":"",
@malys
malys / releaseManager.xsh
Last active January 18, 2025 18:59
[Newreleases.io] integration #newreleases #userscript #xonsh #python #violentmonkey
import requests
import os
import json
def getKey():
with open(os.path.expanduser("~/.newreleases.yaml")) as f:
rawKey=f.read()