Rename Chrome extension directory to match the rest.

This commit is contained in:
Marcus Edel
2023-07-11 13:09:09 -04:00
parent 7accea1fdf
commit 365e037b26
11 changed files with 4 additions and 7 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"manifest_version": 3,
"name": "Audio Transcription",
"version": "1.0.0",
"description": "This extension captures the audio on the current tab, sends it to a server for transcription and shows the transcription in Real-time.",
"options_page": "options.html",
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"activeTab",
"tabCapture",
"scripting"
],
"icons": {
"128":"icon128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon128.png"
}
}