-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidepanel.html
More file actions
53 lines (48 loc) · 1.69 KB
/
sidepanel.html
File metadata and controls
53 lines (48 loc) · 1.69 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
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dify Extension - サイドパネル</title>
<link rel="stylesheet" href="styles/sidepanel.css">
</head>
<body>
<div id="app">
<header class="header">
<h1>Dify Assistant</h1>
<div class="controls">
<button id="settingsBtn" class="btn-icon" title="設定">⚙️</button>
<button id="refreshBtn" class="btn-icon" title="ページ内容を更新">🔄</button>
</div>
</header>
<div id="noUrlMessage" class="message">
<p>DifyアプリのURLが設定されていません。</p>
<button id="openSettingsBtn" class="btn-primary">設定を開く</button>
</div>
<div id="contentPreview" class="content-preview hidden">
<div class="content-header">
<h3>抽出されたコンテンツ</h3>
<div class="content-actions">
<button id="copyContentBtn" class="btn-copy">📋 コピー</button>
<button id="closeContentBtn" class="btn-close">✕</button>
</div>
</div>
<div class="content-body">
<div class="content-meta">
<span id="contentTitle"></span>
<span id="contentInfo"></span>
</div>
<div class="content-text" id="contentText"></div>
</div>
</div>
<div id="difyFrame" class="dify-container">
<iframe id="difyIframe" src="" frameborder="0"></iframe>
</div>
<div id="loadingMessage" class="message hidden">
<div class="loading-spinner"></div>
<p>読み込み中...</p>
</div>
</div>
<script src="src/sidepanel.js"></script>
</body>
</html>