File size: 2,804 Bytes
2319518
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
eb10065
3cac10f
 
 
eb10065
2319518
b53a832
2319518
 
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html>
<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">
  <title>BrowserQwen</title>
<!--  <script src="popup.js"></script>-->
  <style>
    .title-style {
      margin-top: 10px;
      margin-left: 5px;
      font-family: Arial, sans-serif;
      font-size: 24px;
      color: #333;
    }

    body {
        width: 500px;
        height: 600px;
        background-color: aliceblue;
    }
    .contnet {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }
    .upload_file {
        display: flex;
        flex-direction: column;
        margin-top: 10px;
    }
    .upload_btn {

        border: none;
        border-radius: 5px;
        background-color: #5c5cdf;
        font-size: 16px;
        color: white;
        font-weight: 400;
        cursor: pointer;
        width: 70px;
        height: 35px;
    }
    .upload_btn:hover {
            border: none;
            border-radius: 10px;
            background-color: #7f7ff2;
            font-size: 16px;
            color: white;
            font-weight: 400;
            cursor: pointer;
            box-shadow: 0px 0px 0px 1px #848181;
        }

    .div-with-copy-paste {
      width: 340px;
      height: 200px;
      background-color: #f2f2f2;
      border: 1px solid #ccc;
      border-radius: 5px;
      padding: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      position: relative;
    }

    .input-text {
      width: 300px;
      /* height: 100px; */
      background-color: #fffdfd;
      border: 1px solid #ccc;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      position: left;
      margin-top: 5px;
      margin-bottom: 5px;
    }

    .copy-button {
      /* position: absolute;
      top: 10px;
      right: 10px; */
      background-color: #5085cf;
      color: white;
      padding: 8px 8px;
      border: none;
      border-radius: 3px;
      cursor: pointer;
    }

    .copy-button:hover {
      background-color: #45a049;
    }

    ::placeholder {
      color: rgb(197, 196, 196);
    }

    iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    </style>

</head>


<body>
<!--    <iframe src=$popup_url style="height: 550px"></iframe>-->
<div id="iframe_area" style="height: 570px"></div>

<div style="display:none">
<h3>Customize Token:</h3>
<input type="text" id="access_token" name="access_token" class="input-text" placeholder="input and chick change button, then reopen this">
<button id="set_access_token" class="upload_btn">Change</button>
</div>
<script src="popup.js"></script>
<script src="md5.js"></script>
</body>
</html>