-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
99 lines (92 loc) · 3.96 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
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./popup.css" />
<link rel="stylesheet" href="./bootstrap.min.css" />
<link rel="stylesheet" href="./alertify.rtl.min.css">
<link rel="stylesheet" href="./default.rtl.min.css">
<style type="text/css" media="screen">
#editor {
height: 150px;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="container header">
<img src="images/flipp-logo-white.svg" alt="Flipp" width="58" height="58" class="map img-resonsive">experience
</div>
</div>
<form class="row g-3 needs-validation" id="flipp-injector-form">
<div class="row second">
<div class="col-sm">
<label for="flippExtenstionSiteId" class="form-label">Site ID</label>
<input type="text" class="form-control" id="flippExtenstionSiteId" placeholder="Site ID" value="1243066" required>
</div>
<div class="col-sm">
<label for="flippExtenstionZoneIds" class="form-label">Zone IDs</label>
<input type="text" class="form-control" id="flippExtenstionZoneIds" placeholder="Zone IDs">
</div>
</div>
<div class="row second">
<div class="col-sm">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" id="nestedIframe">
<label class="form-check-label" for="nestedIframe">Nested Iframe</label>
</div>
</div>
<div class="col-sm">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" id="expandOnReadmore">
<label class="form-check-label" for="expandOnReadmore">Expand on Readmore</label>
</div>
</div>
<div class="col-sm">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" id="dwellExpandable">
<label class="form-check-label" for="dwellExpandable">Dwell Expandable</label>
</div>
</div>
</div>
<div class="row second">
<div class="col-sm">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" id="preview">
<label class="form-check-label" for="preview">Preview</label>
</div>
</div>
<div class="col-sm">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" id="startCompact">
<label class="form-check-label" for="startCompact">Start Compact</label>
</div>
</div>
<div class="col-sm">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" id="isGoogleAmp">
<label class="form-check-label" for="dwellExpandable">Google Amp</label>
</div>
</div>
</div>
<div class="row second">
<label class="form-check-label" for="editor">Loader Options</label>
<div id="editor">{}</div>
</div>
<div class="row second">
<div class="col-sm"><button type="button" id="select" class="btn btn-primary">Select</button></div>
<div class="col-sm"><button type="submit" id="inject" class="btn btn-primary">Inject</button></div>
<div class="col-sm"><button type="button" id="clear" class="btn btn-secondary">Clear ALL</button></div>
</div>
</form>
</div>
<script src="js/alertify.min.js"></script>
<script src="js/ace.js" type="text/javascript" charset="utf-8"></script>
<script src="./popup.js" type="module"></script>
<script src="js/jquery-3.6.3.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>