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
| // paste this snippet in your browser bookmark url | |
| javascript: (function () { | |
| function clickIfVisible(selector) { | |
| var element = document.querySelector(selector); | |
| if (element && element.offsetParent !== null) { | |
| element.click(); | |
| return true; | |
| } | |
| return false; | |
| } |
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
| blueprint: | |
| name: Rotazione Circolare Input Select con Reset | |
| description: Esegue una rotazione circolare di un input_select utilizzando multipli trigger definiti dall'utente per le azioni "up" e "down", e reimposta il valore di default dopo un tempo specificato. | |
| domain: automation | |
| input: | |
| input_select: | |
| name: Input Select | |
| description: L'input_select da ruotare. | |
| selector: | |
| entity: |
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
| blueprint: | |
| name: Azioni Condizionate su Input Select | |
| description: Esegue azioni solo se il valore di un input_select corrisponde a un valore atteso. Utilizza trigger multipli per le azioni "up" e "down". | |
| domain: automation | |
| input: | |
| input_select: | |
| name: Input Select | |
| description: L'input_select da monitorare. | |
| selector: | |
| entity: |
OlderNewer