This repository was archived by the owner on Feb 7, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathmod.json
96 lines (96 loc) · 2.46 KB
/
mod.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "tabs",
"id": "e1692c29-475e-437b-b7ff-3eee872e1a42",
"environments": ["linux", "win32", "darwin"],
"version": "0.3.0",
"description": "open multiple notion pages in a single window.",
"preview": "tabs.jpg",
"tags": ["extension", "app"],
"authors": [
{
"name": "dragonwocky",
"email": "[email protected]",
"homepage": "https://dragonwocky.me/",
"avatar": "https://dragonwocky.me/avatar.jpg"
}
],
"css": {
"frame": ["tabs.css"]
},
"js": {
"client": ["client.mjs"],
"electron": [
{ "source": "main.cjs", "target": "main/main.js" },
{ "source": "systemMenu.cjs", "target": "main/systemMenu.js" },
{ "source": "createWindow.cjs", "target": "main/createWindow.js" },
{ "source": "rendererIndex.cjs", "target": "renderer/index.js" }
]
},
"options": [
{
"type": "toggle",
"key": "remember_last_open",
"label": "remember last open tabs",
"tooltip": "**a continue-where-you-left-off experience** (reopens recently active tabs after an app relaunch)",
"value": true
},
{
"type": "select",
"key": "label_type",
"label": "tab labels",
"values": ["page icon & title", "page icon only", "page title only"]
},
{
"type": "select",
"key": "layout_style",
"label": "tab layout",
"values": ["traditional tabbed", "rectangular", "bubble", "compact"]
},
{
"type": "select",
"key": "select_modifier",
"label": "tab select modifier",
"tooltip": "**usage: Modifier+1 to Modifier+9, Modifier+ArrowLeft and Modifier+ArrowRight**",
"values": [
"Alt",
"Command",
"Control",
"Super",
"Alt+Shift",
"Command+Shift",
"Control+Shift",
"Super+Shift"
]
},
{
"type": "hotkey",
"key": "prev_tab",
"label": "previous tab hotkey",
"value": "Control+Shift+Tab"
},
{
"type": "hotkey",
"key": "next_tab",
"label": "next tab hotkey",
"value": "Control+Tab"
},
{
"type": "hotkey",
"key": "new_tab",
"label": "new tab hotkey",
"value": "Control+T"
},
{
"type": "hotkey",
"key": "close_tab",
"label": "close tab hotkey",
"value": "Control+W"
},
{
"type": "hotkey",
"key": "restore_tab",
"label": "restore previously opened tab hotkey",
"value": "Control+Shift+T"
}
]
}