-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
34 lines (34 loc) · 839 Bytes
/
manifest.json
File metadata and controls
34 lines (34 loc) · 839 Bytes
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
{
"manifest_version": 3,
"name": "Reading Pointer",
"description": "changes cursor to a beautiful pointer that is animated and is a utility tool to assist in reading",
"version": "1.0",
"icons": {
"16": "images/icon-16.png",
"24": "images/icon-24.png",
"32": "images/icon-32.png",
"64": "images/icon-64.png",
"128": "images/icon-128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "images/icon-16.png",
"24": "images/icon-24.png",
"32": "images/icon-32.png",
"64": "images/icon-64.png",
"128": "images/icon-128.png"
}
},
"permissions": ["scripting", "activeTab"],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+B",
"mac": "Command+B"
}
}
}
}