56 lines
1.4 KiB
JSON
56 lines
1.4 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "كلود - إملاء صوتي عربي",
|
|
"version": "1.0.1",
|
|
"description": "يضيف زر مايكروفون لموقع Claude.ai للكتابة بالصوت باللغة العربية - Arabic speech-to-text for Claude.ai",
|
|
"permissions": [
|
|
"storage",
|
|
"offscreen"
|
|
],
|
|
"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"
|
|
},
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": [
|
|
"speech.html",
|
|
"speech.js",
|
|
"permission.html",
|
|
"permission.js",
|
|
"icons/*.svg"
|
|
],
|
|
"matches": ["https://claude.ai/*"]
|
|
}
|
|
],
|
|
"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"
|
|
}
|
|
} |