Skip to content

Instantly share code, notes, and snippets.

View ohhelloana's full-sized avatar
🐾

Ana Rodrigues ohhelloana

🐾
View GitHub Profile
@ohhelloana
ohhelloana / speak.js
Last active May 31, 2024 11:27
Speech Recognition bookmarklet - Inspired by the gist made available by kevinlin1 (https://gist.github.com/kevinlin1/a7e644eda177d8b5777eb8f791971cb8) I adapted it to suit my needs and style
javascript:(() => {
const div = document.createElement('div');
div.classList.add("my-notes");
div.style.display = 'none';
div.style.backgroundColor = '#52614B';
div.style.position = 'fixed';
div.style.top = '0';
div.style.zIndex = '999';
div.style.maxWidth = '40rem';
div.style.maxHeight = '30vh';