-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
executable file
·31 lines (29 loc) · 1.04 KB
/
popup.html
File metadata and controls
executable file
·31 lines (29 loc) · 1.04 KB
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
<!doctype html>
<!--
This page is shown when the extension button is clicked, because the
"browser_action" field in manifest.json contains the "default_popup" key with
value "popup.html".
-->
<html>
<head>
<title>Umbraco Tools</title>
<link href="style.css" rel="stylesheet" />
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: https://developer.chrome.com/extensions/contentSecurityPolicy
-->
<script src="jquery.min.js"></script>
<script src="popup.js"></script>
</head>
<body>
<div class="buttons">
<button class="button" id="frontend">Front End</button>
<button class="button" id="backoffice">Backoffice</button>
<button class="button" id="miniprofiler">Mini Profiler</button>
<button class="button" id="trace">Trace</button>
<button class="button" id="republish">Republish XML</button>
</div>
</body>
</html>