-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
44 lines (44 loc) · 969 Bytes
/
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
{
"name": "Read Aloud",
"manifest_version": 3,
"version": "0.43.5",
"permissions": ["contextMenus", "storage", "tts"],
"background": {
"service_worker": "src/background.ts"
},
"content_scripts": [
{
"all_frames": true,
"matches": ["<all_urls>"],
"js": ["src/content.ts"]
}
],
"action": {
"default_title": "Read aloud selected text",
"default_icon": {
"16": "images/default16.png",
"32": "images/default32.png",
"48": "images/default48.png",
"128": "images/default128.png"
}
},
"commands": {
"read_aloud_selected_text": {
"description": "Read aloud selected text",
"suggested_key": {
"default": "Ctrl+Shift+Space"
}
}
},
"web_accessible_resources": [
{
"matches": ["<all_urls>"],
"resources": [
"images/default.png",
"images/default.svg",
"images/stop.svg",
"images/stop.png"
]
}
]
}