-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
38 lines (38 loc) · 826 Bytes
/
manifest.json
File metadata and controls
38 lines (38 loc) · 826 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
35
36
37
38
{
"name": "SnapLogic Pipeline Linker",
"description": "Copy the Active Pipeline's Link to the Clipboard",
"version": "1.0",
"manifest_version": 2,
"permissions": [
"activeTab",
"notifications",
"declarativeContent"
],
"background": {
"scripts": [
"js/background.js"
],
"persistent": false
},
"page_action": {
"default_icon": {
"19": "img/icon-19.png",
"38": "img/icon-38.png"
},
"default_title": "Copy the link to the active pipeline"
},
"icons": {
"128": "img/icon-128.png",
"48": "img/icon-48.png",
"16": "img/icon-16.png"
},
"commands": {
"_execute_page_action": {
"description": "Copy the link to the active pipeline",
"suggested_key": {
"default": "Ctrl+I",
"mac": "MacCtrl+I"
}
}
}
}