-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
59 lines (59 loc) · 1.43 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"$schema": "https://json.schemastore.org/chrome-manifest",
"name": "Sofer.Ai",
"version": "1.0.8",
"description": "Sofer.Ai is a browser extension that allows you to transcribe audio and video files.",
"homepage_url": "https://github.com/SoferAi/web-extension",
"manifest_version": 3,
"minimum_chrome_version": "121",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "121.0"
}
},
"icons": {
"710": "src/icon.png"
},
"permissions": [
"storage",
"activeTab",
"cookies"
],
"host_permissions": [
"https://*.yutorah.org/*",
"https://sofer.ai/*",
"https://*.sofer.ai/*",
"https://app.sofer.ai/*"
],
"content_scripts": [
{
"matches": [
"https://*.yutorah.org/*"
],
"js": [
"src/content.js"
],
"css": [
"src/styles.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"src/icon.png"
],
"matches": [
"https://*.yutorah.org/*"
]
}
],
"background": {
"service_worker": "src/background.js"
},
"action": {
"default_popup": "src/popup.html",
"default_icon": "src/icon.png"
}
}