Recent Posts

Proofreading Tool 2

Reverse and Highlight Sentences Reverse Sentences Play Pause let currentWordIndex = 0; let wordList = []; let...

Proofreading Tool

Reverse Sentences Reverse Sentences function reverseSentences() { const inputText = document.getElementById("input").value; ...

Randomize Lines Tool

function randomizeLines() { var textBox = document.getElementById("text-box"); var lines = textBox.value.split("\n"); var randomizedLines = shuffleArray(lines); ...

Make Title Title-Case

var exceptions = ["the", "a", "an"]; var prepositions = ["about", "above", "across", "after", "against", "along", "among", "around", "as", "at", "before", "behind", "below",...

Convert .png to .jpg

function convertImage() { var canvas = document.createElement("canvas"); var ctx = canvas.getContext("2d"); var img = new Image(); img.onload = function...

Convert .wav file to .mp3

function convertAudio() { var fileInput = document.getElementById("file-input"); var file = fileInput.files[0]; var reader = new FileReader(); ...