chrome extension: point to Modal transcription service

- add unit test
This commit is contained in:
Aaron Boxer
2026-06-04 16:11:11 -04:00
committed by Aaron Boxer
parent 44940e2834
commit d0ad362b20
5 changed files with 269 additions and 3 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"name": "audio-transcription-chrome",
"version": "1.0.0",
"description": "Audio Transcription is a Chrome extension that allows users to capture any audio playing on the current tab and transcribe it using OpenAI-whisper in real time. Users will have the option to do voice activity detection as well to not send audio to server when there is no speech.",
"main": "audiopreprocessor.js",
"scripts": {
"test": "jest"
},
"jest": {
"testEnvironment": "jsdom"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1"
}
}