forked from Manojkh/ConVista-CPI-Helper-Chrome-Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
94 lines (73 loc) · 1.99 KB
/
popup.html
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
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<style>
#main {
width: 300px;
font-family: 'Arial', sans-serif;
}
/* unvisited link */
a:link {
color: #009fe3;
text-decoration: none;
}
/* visited link */
a:visited {
color: #009fe3;
text-decoration: none;
}
/* mouse over link */
a:hover {
color: #ff5722;
text-decoration: none;
}
#cpiHelper_contentheader {
padding: 10px;
font-weight: bold;
z-index: 10;
background-color: #009fe3;
color: #fff;
}
#cpiHelper_content {
padding: 3px;
}
ul {
margin-top: 0.3em;
}
.input_fields {
margin-top: 2px;
padding: 2px;
margin-bottom: 5px;
}
</style>
</head>
<body>
<div id="main">
<div id="cpiHelper_contentheader">ConVista CPI Helper</div>
<div id="cpiHelper_content">
<div id="lastVisitedIflows"></div>
<div id="tenantUrls"></div>
<h3>General Links*</h3>
<ul style="list-style-type:disc;">
<li><a href="https://help.sap.com/viewer/product/CLOUD_INTEGRATION/Cloud/" target="_blank">SAP CPI
Help</a></li>
<li><a href="https://help.sap.com/viewer/product/CLOUD_INTEGRATION/Cloud/en-US?task=develop_task"
target="_blank">SAP CPI
Development</a></li>
<li><a href="https://blogs.sap.com/2020/03/05/cpi-chrome-plugin-to-enhance-sap-cloud-platform-integration-usability/"
target="_blank">ConVista CPI Helper Blog Post</a></li>
<li><a href="https://groovyide.com/cpi" target="_blank">Groovy IDE</a></li>
</ul>
<p>This PlugIn was initiated by <a href=" https://convista.com" target="_blank">ConVista Consulting AG</a>.
Feel free to contribute at our
<a href="https://github.com/dbeck121/ConVista-CPI-Helper-Chrome-Extension" target="_blank">Github
Page</a>.
</p>
<p id="cpihelper_version"></p>
<p>License: <a href="https://www.gnu.org/licenses/gpl-3.0.en.html" target="_blank">GNU GPL v3</a></p>
<p>*we are not responsible for the content of external links</p>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>