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 () { | |
let textarea = document.querySelector('textarea[aria-label="Send a message"]') | |
let submit = document.querySelector('[role="button"][aria-label="Send a message"]') | |
if (!textarea || !submit) return alert('Uh oh! Something went wrong. Do you have the chat panel open?') | |
function sendMessage(text) { | |
textarea.click() | |
textarea.value = text | |
submit.removeAttribute('aria-disabled') |
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 Overdrive Audio Book Downloader | |
// @namespace https://gist.github.com/MikeRawding | |
// @version 0.4 | |
// @description Adds a button to download all parts of an audio book from listen.overdrive.com | |
// @author Mike Rawding | |
// @include *listen.overdrive.com* | |
// @icon https://www.overdrive.com/Content/img/icons/svg/overdrive-app-icon.svg | |
// @grant none | |
// ==/UserScript== |
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 Google Meet Spacebar PTT | |
// @namespace https://github.com/mikerawding | |
// @version 0.1 | |
// @description Use Spacebar as Push-To-Talk for Google Meet | |
// @author Mike Rawding | |
// @match https://meet.google.com/* | |
// @grant none | |
// ==/UserScript== |