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 Twitter: Fix Emoji 15.0 | |
| // @version 1 | |
| // @description Twemoji is not up-to-date with Emoji 15.0 (Unicode 15.0). This script replaces some Emoji 15.0 with working URLs on Twitter. | |
| // @author https://github.com/rico-vz | |
| // @match *://twitter.com/* | |
| // @grant none | |
| // ==/UserScript== | |
| const emoji15 = { |
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
| html { | |
| background-color: #16161e !important; | |
| } | |
| html { | |
| color-scheme: dark !important; | |
| } | |
| html, body { | |
| background-color: #16161e; | |
| } | |
| html, body { |
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 Twitter - No more for you | |
| // @version 1.0 | |
| // @match https://twitter.com/* | |
| // @match https://mobile.twitter.com/* | |
| // @exclude https://twitter.com/en/* | |
| // @exclude https://mobile.twitter.com/en/* | |
| // @exclude https://twitter.com/account/* | |
| // @exclude https://mobile.twitter.com/account/* | |
| // @exclude https://twitter.com/intent/* |
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
| function ga() { | |
| if [ $# -lt 2 ] || [ "$1" == "help" ]; then | |
| echo "[GitAngel] Usage: ga [type] [message]" | |
| echo "[GitAngel] Valid types: feature, add, fix, style, deploy, chore, other" | |
| return | |
| fi | |
| type=$1 | |
| message=$2 | |
| emoji="" |