-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
executable file
·61 lines (61 loc) · 1.62 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
52
53
54
55
56
57
58
59
60
61
{
"manifest_version": 2,
"name": "Pin Unpin Tab",
"version": "5.0",
"description": "Pin or unpin a tab through the toolbar icon, or a keyboard shortcut, or a left long-click anywhere on the page.",
"homepage_url": "https://github.com/jayesh-bhoot/pin-unpin-tab",
"browser_action": {
"default_icon": {
"48": "./src/icons/pin-dark.svg",
"96": "./src/icons/pin-dark.svg"
},
"theme_icons": [
{
"light": "./src/icons/pin-light.svg",
"dark": "./src/icons/pin-dark.svg",
"size": 48
},
{
"light": "./src/icons/pin-light.svg",
"dark": "./src/icons/pin-dark.svg",
"size": 96
}
]
},
"background": {
"scripts": [
"./src/bg.build.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"./src/long_click.build.js"
],
"run_at": "document_start"
}
],
"options_ui": {
"page": "./src/preferences.html",
"browser_style": true
},
"permissions": [
"storage"
],
"icons": {
"48": "./src/icons/pin-dark.svg",
"96": "./src/icons/pin-dark.svg"
},
"commands": {
"_execute_browser_action": {
"description": "Default shortcut to toggle pinned status of the active tab",
"suggested_key": {
"default": "Alt+P",
"mac": "MacCtrl+Shift+P"
}
}
}
}