| pageDecoration | ||||
|---|---|---|---|---|
|
html {
| // ==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== |
| // ==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 |
| // ==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 |
| // ==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== |
| // ==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== | |
| // ==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 |
| pageDecoration | ||||
|---|---|---|---|---|
|
html {
| ```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 |
| [ | |
| { | |
| "id":"b3f710d3656ec0bd", | |
| "type":"exec", | |
| "z":"73f57341a6bdef33", | |
| "command":"rm -f /tmp/cookies.txt", | |
| "addpay":"", | |
| "append":"", | |
| "useSpawn":"false", | |
| "timer":"", |
| import requests | |
| import os | |
| import json | |
| def getKey(): | |
| with open(os.path.expanduser("~/.newreleases.yaml")) as f: | |
| rawKey=f.read() |