This file contains 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
javascript:(function(){ | |
const subtitleElement = document.getElementsByClassName("shaka-text-container")[0]; | |
subtitleElement.setAttribute("style", "font-size: 50px;"); | |
})(); |
This file contains 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
ANTIGEN_LOG="$HOME/antigen/CHANGELOG.md" | |
source "$HOME/antigen/antigen.zsh" | |
antigen use oh-my-zsh | |
antigen bundle git | |
antigen bundle pip | |
antigen bundle command-not-found | |
antigen bundle zsh-users/zsh-completions |
This file contains 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
var all = document.getElementsByTagName("*"); | |
for (var i=0, max=all.length; i < max; i++) { | |
all[i].style.color = "orange"; | |
} |
This file contains 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
javascript: (function () { | |
if (window.location.href.includes("vscode.dev")) { | |
window.location.replace( | |
window.location.href.replace( | |
"vscode.dev/", "" | |
).replace("github", "github.com")) | |
} | |
else { | |
window.location.replace(`http://vscode.dev/${window.location.href}`) | |
} |
This file contains 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
javascript:(function(){window.location.replace(`http://vscode.dev/${window.location.href}`)})(); |