« get me outta code hell

index.html « popup « extension - interactive-bgm - Browser extension that adds background music based on the site you're browsing
about summary refs log tree commit diff
path: root/extension/popup/index.html
blob: fe03bfff93167dc8681095f318443a07442161b2 (plain)
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
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Interactive BGM</title>
        <link rel="stylesheet" href="style.css">
    </head>
    <body>
        <div class="screen visible" id="loading-screen">
            <p>Loading...</p>
        </div>
        <div class="screen has-sidebar" id="main-screen">
            <div class="sidebar">
                <h1>Rules</h1>
                <h2>Applies on this page:</h2>
                <ul id="rules-on-this-page"></ul>
                <h2>All rules:</h2>
                <ul id="all-rules"></ul>
            </div>
            <div class="content">
                <div class="content-screen" id="rule-content">
                    <h1 id="hostname"></h1>
                    <p>(Applies to: <span id="wildcard-representation">*</span>)</p>
                    <h2>Tracks</h2>
                    <ul id="track-list"></ul>
                    <h1>General Settings</h1>
                    <p><label><input id="disable-everywhere" type="checkbox"> Disable everywhere for now?</label></p>
                </div>
                <div class="content-screen visible" id="no-rule-content">
                    <p>No rule selected. Please select or create one!</p>
                </div>
            </div>
        </div>
        <div class="screen" id="invalid-host-screen">
            <p>Sorry, this page doesn't appear to have a hostname.<br>We can't configure music here.</p>
        </div>
        <script type="module" src="main.js"></script>
    </body>
</html>