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
[core] | |
# Use custom `.gitignore` and `.gitattributes` | |
attributesfile = ~/.gitattributes | |
editor = /opt/homebrew/bin/code -w | |
excludesfile = ~/.gitignore | |
ignorecase = false | |
noAheadBehind = true | |
pager = delta | |
preloadIndex = true |
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
// Copy the contents of this file into the browser console from the Plex Web App | |
// This will remove all items from your watchlist | |
const links = document.querySelectorAll('a[aria-label][href][role="link"]'); | |
let index = 0; | |
function hoverNextLink() { | |
if (index < links.length) { | |
const link = links[index]; | |
const url = decodeURIComponent(link.getAttribute("href").split("&")[0]); |
OlderNewer