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 [GITHUB] Create branch from issue | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Creates a branch using the issue. Adds a button to the interface. | |
// @author Pedro Palhari | |
// @match https://github.com/*/*/issues/* | |
// @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
import { | |
Application, | |
Router, | |
send, | |
} from "https://deno.land/x/[email protected]/mod.ts"; | |
const app = new Application(); | |
const router = new Router(); |
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
//let img = document.querySelector("img"); | |
async function imgSourceToBlob(img) { | |
let canvas = document.createElement('canvas'); | |
canvas.width = img.width; | |
canvas.height = img.height; | |
let ctx = canvas.getContext('2d'); | |
ctx.drawImage(img, 0, 0); |
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 Whatsapp Audio Speedup | |
// @namespace https://palhari.dev | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author Pedro Palhari | |
// @match https://web.whatsapp.com/* | |
// @grant none | |
// ==/UserScript== |
NewerOlder