-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
31 lines (31 loc) · 1012 Bytes
/
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
{
"browser_action": {
"default_icon": "icon.png",
"default_popup": "pages/popup.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+X",
"mac": "Command+Shift+X"
}
}
},
"content_scripts": [ {
"css": [ "styles/editable_fields_highlight.css" ],
"js": [ "content_scripts/content.js", "scripts/storage.js", "scripts/workitems.js" ],
"matches": [ "https://*.visualstudio.com/*/*" ],
"run_at": "document_end"
} ],
"description": "Allows to open Azure DevOps workitems quickly",
"icons": {
"128": "icon128.png"
},
"manifest_version": 2,
"name": "Azure DevOps Quick Access",
"options_page": "pages/options.html",
"permissions": [ "tabs", "activeTab", "clipboardRead", "*://*/*", "storage" ],
"short_name": "AzDoQa",
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "1.0.0.1"
}