-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
45 lines (44 loc) · 1.96 KB
/
popup.html
File metadata and controls
45 lines (44 loc) · 1.96 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!--
============================================================================
WebIn - Floating Overlay for Instant Access to Web Applications
============================================================================
Author : Avdesh Jadon
GitHub : https://github.com/avdeshjadon
License : MIT License - free to use, modify, and distribute.
See LICENSE file in the project root for full license text.
============================================================================
If this project helped you, consider starring the repository, opening a
pull request, or reporting issues on GitHub. Contributions are welcome.
============================================================================
popup.html - Standalone Popup Window Page
===========================================================
HTML entry point for the WebIn popup window, used as a fallback when the
overlay is launched on restricted pages (chrome://, edge://, about:, etc.)
where content script injection is not possible. Loads all WebIn modules
and popup-inject.js to render the full UI inside a standalone browser window.
============================================================================
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebIn</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { width: 100vw; height: 100vh; overflow: hidden; background: #f5f5dc; }
</style>
</head>
<body>
<script src="webin/config.js"></script>
<script src="webin/state.js"></script>
<script src="webin/styles.js"></script>
<script src="webin/styles2.js"></script>
<script src="webin/styles3.js"></script>
<script src="webin/modals.js"></script>
<script src="webin/ui.js"></script>
<script src="webin/tabs.js"></script>
<script src="webin/events.js"></script>
<script src="webin/popup-inject.js"></script>
</body>
</html>