forked from kevinclcn/PasteImageToJIRA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
31 lines (31 loc) · 853 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
{
"name": "pasteImgToJIRA",
"version":"0.0.1",
"manifest_version": 2,
"browser_action": {
"default_icon": "images/camera-icon.png",
"default_title": "capture sap anywhere"
},
"icons": {
"128": "images/camera-icon.png",
"16": "images/camera-icon.png",
"32": "images/camera-icon.png",
"48": "images/camera-icon.png"
},
"background": {
"page": "background.html"
},
"content_scripts": [
{
"matches": ["https://ubtjira.pvgl.sap.corp/*"],
"js":["lib/jquery-2.1.1.min.js", "app/paste_to_jira.js"]
},
{
"css": [ "stylesheets/selected.css" ],
"js": [ "lib/jquery-2.1.1.min.js", "lib/dragresize.js", "app/capture.js"],
"matches": [ "http://*/*", "https://*/*" ],
"run_at": "document_end"
}
],
"permissions": [ "tabs", "<all_urls>", "storage"]
}