-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathmanifest.json
More file actions
86 lines (86 loc) · 2.37 KB
/
manifest.json
File metadata and controls
86 lines (86 loc) · 2.37 KB
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
{
"name": "Tab Resize - split screen layouts",
"short_name": "Tab Resize",
"version": "3.0.0",
"manifest_version": 3,
"minimum_chrome_version": "104",
"description": "The ORIGINAL Tab Resize. Split Screen made easy. Resize the CURRENT tab and tabs to the RIGHT into layouts on separate windows.",
"action": {
"default_icon": "images/icons/icon128.png",
"default_popup": "index.html",
"default_title": "Tab Resize split screen layouts"
},
"icons": { "16": "images/icons/icon16.png",
"48": "images/icons/icon48.png",
"128": "images/icons/icon128.png" },
"permissions": ["tabs", "system.display", "storage","favicon"],
"web_accessible_resources": [{
"resources": ["_favicon/*"],
"matches": ["<all_urls>"],
"extension_ids": ["*"]
}],
"background": {
"service_worker": "js/background.js",
"type": "module"
},
"offline_enabled": true,
"content_security_policy": {
"extension_pages": "default-src 'self'"
},
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"browser_style": true
},
"commands": {
"tab-resize-0-undo": {
"description": "Undo previous resize",
"suggested_key": {
"default": "Ctrl+Shift+Z",
"mac": "MacCtrl+Shift+Z"
}
},
"tab-resize-1-1": {
"description": "Resize 1x1 layout",
"suggested_key": {
"default": "Ctrl+Shift+1",
"mac": "MacCtrl+Shift+1"
}
},
"tab-resize-1-2": {
"description": "Resize 1x2 layout",
"suggested_key": {
"default": "Ctrl+Shift+2",
"mac": "MacCtrl+Shift+2"
}
},
"tab-resize-2-1": {
"description": "Resize 2x1 layout"
},
"tab-resize-2-2": {
"description": "Resize 2x2 layout",
"suggested_key": {
"default": "Ctrl+Shift+4",
"mac": "MacCtrl+Shift+4"
}
},
"tab-resize-1-3": {
"description": "Resize 1x3 layout"
},
"tab-resize-3-1": {
"description": "Resize 3x1 layout"
},
"tab-resize-6-4-scale-horizontal": {
"description": "Resize 6:4 layout"
},
"tab-resize-6-4-scale-vertical": {
"description": "Resize 6:4 vertical layout"
},
"tab-resize-7-3-scale-horizontal": {
"description": "Resize 7:3 layout"
},
"tab-resize-7-3-scale-vertical": {
"description": "Resize 7:3 vertical layout"
}
}
}