Add Claude Arabic Voice Input extension - Arabic speech-to-text for Claude.ai with Gemini AI processing

This commit is contained in:
Hamza-Ayed
2026-06-02 17:42:14 +03:00
parent fa30682463
commit 8f1ab9174a
9 changed files with 1242 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
{
"manifest_version": 3,
"name": "كلود - إملاء صوتي عربي",
"version": "1.0.0",
"description": "يضيف زر مايكروفون لموقع Claude.ai للكتابة بالصوت باللغة العربية - Arabic speech-to-text for Claude.ai",
"permissions": [
"storage"
],
"host_permissions": [
"https://claude.ai/*",
"https://cv.intaleqapp.com/*"
],
"content_scripts": [
{
"matches": [
"https://claude.ai/*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.svg",
"48": "icons/icon48.svg",
"128": "icons/icon128.svg"
}
},
"icons": {
"16": "icons/icon16.svg",
"48": "icons/icon48.svg",
"128": "icons/icon128.svg"
}
}