-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
51 lines (51 loc) · 1.24 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
{
"author": "Shun Sakurai",
"background": {
"service_worker": "background.js"
},
"commands": {
"displaySubtasksDropdown": {
"description": "Open links to sibling subtasks",
"suggested_key": {
"default": "Ctrl+Shift+Right",
"mac": "MacCtrl+Shift+Right"
}
},
"replaceTextInDescription": {
"description": "Replace text in task description",
"suggested_key": {
"default": "Ctrl+Shift+R",
"mac": "MacCtrl+Shift+R"
}
}
},
"content_scripts": [
{
"css": ["main.css"],
"js": ["content_script.js", "ui_translation.js"],
"matches": ["https://app.asana.com/*"],
"run_at": "document_end"
}
],
"description" : "Enhance navigation for Asana -- less mouse moves and key presses.",
"homepage_url": "https://github.com/ShunSakurai/asana-navigator",
"host_permissions": [
"https://app.asana.com/*"
],
"icons": {
"128": "images/an128.png",
"48": "images/an48.png",
"16": "images/an16.png"
},
"incognito": "spanning",
"manifest_version": 3,
"name": "Asana Navigator",
"options_ui": {
"page": "options.html"
},
"permissions": [
"storage", "tabs"
],
"short_name": "AsaNavigator",
"version": "3.1.0"
}