-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgemini_api_guide.html
More file actions
635 lines (549 loc) · 29.3 KB
/
gemini_api_guide.html
File metadata and controls
635 lines (549 loc) · 29.3 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ContextClipCalendar 완벽 사용 가이드 - AI 기반 스마트 일정 등록</title>
<style>
/* Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Roboto, sans-serif;
line-height: 1.65;
color: #1d1d1f;
background: #ffffff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
min-height: 100vh;
padding: 24px;
}
.container {
max-width: 860px;
margin: 0 auto;
background: #ffffff;
border-radius: 12px;
border: 1px solid #e5e5ea;
}
.header {
background: #ffffff;
color: #1d1d1f;
padding: 28px 24px 20px 24px;
border-bottom: 1px solid #e5e5ea;
text-align: center;
}
.header h1 {
font-size: 2rem;
font-weight: 700;
letter-spacing: -0.01em;
margin-bottom: 8px;
}
.header p {
font-size: 1rem;
color: #6e6e73;
}
.content { padding: 24px; }
/* Table of contents */
.toc {
background: #ffffff;
border: 1px solid #e5e5ea;
border-radius: 12px;
padding: 20px 24px;
margin-bottom: 28px;
}
.toc h2 {
color: #1d1d1f;
font-size: 1.125rem;
margin-bottom: 12px;
letter-spacing: -0.01em;
}
.toc ol { list-style: decimal; padding-left: 20px; }
.toc li { margin: 8px 0; color: #1d1d1f; }
.toc a { color: #007aff; text-decoration: none; }
.toc a:hover { text-decoration: underline; }
/* Sections */
.section {
margin: 36px 0;
padding: 24px 24px 20px 24px;
background: #ffffff;
border: 1px solid #e5e5ea;
border-radius: 12px;
}
.section h2 {
color: #1d1d1f;
font-size: 1.5rem;
margin-bottom: 16px;
letter-spacing: -0.01em;
padding-bottom: 8px;
border-bottom: 1px solid #e5e5ea;
}
.section h3 {
color: #1d1d1f;
font-size: 1.125rem;
margin: 18px 0 10px 0;
letter-spacing: -0.01em;
}
/* Steps */
.step {
background: #f5f5f7;
border: 1px solid #e5e5ea;
padding: 20px;
margin: 14px 0;
border-radius: 10px;
}
/* Hide original step-number (may include emojis) */
.step-number { display: none; }
/* Automatic numbering for step sections */
#step-by-step { counter-reset: step; }
#step-by-step .step h4::before {
counter-increment: step;
content: counter(step) '. ';
color: #6e6e73;
font-weight: 600;
}
#setup { counter-reset: setupstep; }
#setup .step h4::before {
counter-increment: setupstep;
content: counter(setupstep) '. ';
color: #6e6e73;
font-weight: 600;
}
.step h4 {
display: inline;
color: #1d1d1f;
font-size: 1.05rem;
letter-spacing: -0.01em;
}
.step p { margin: 10px 0; color: #424245; }
.step ul, .step ol { margin: 12px 0; padding-left: 24px; }
.step li { margin-bottom: 8px; color: #424245; }
.highlight {
background: #f5f5f7;
border: 1px solid #e5e5ea;
border-radius: 10px;
padding: 20px;
margin: 14px 0;
}
.highlight h4 { color: #1d1d1f; margin-bottom: 8px; }
.highlight p { color: #424245; margin: 0; }
.warning {
background: #fff5f5;
border: 1px solid #ffdede;
border-radius: 10px;
padding: 20px;
margin: 14px 0;
}
.warning h4 { color: #b00020; margin-bottom: 8px; }
.warning p { color: #b00020; margin: 0; }
.success {
background: #f5fff6;
border: 1px solid #d8f5db;
border-radius: 10px;
padding: 20px;
margin: 14px 0;
}
.success h4 { color: #1d7a36; margin-bottom: 8px; }
.success p { color: #1d7a36; margin: 0; }
.code-block {
background: #f5f5f7;
color: #1d1d1f;
padding: 14px 16px;
border-radius: 8px;
margin: 12px 0;
overflow-x: auto;
font-family: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
font-size: 0.9rem;
line-height: 1.5;
border: 1px solid #e5e5ea;
}
.code-block code { background: none; padding: 0; color: inherit; }
.link-button {
display: inline-block;
background: #ffffff;
color: #007aff;
padding: 10px 14px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
border: 1px solid #e5e5ea;
transition: background 0.15s ease, border-color 0.15s ease;
margin: 6px 0;
}
.link-button:hover { background: #f5f5f7; border-color: #d2d2d7; }
.secondary-button {
display: inline-block;
background: #ffffff;
color: #1d1d1f;
padding: 8px 12px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
border: 1px solid #e5e5ea;
}
.secondary-button:hover { background: #f5f5f7; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin: 16px 0; }
.stat-card { background: #f5f5f7; border: 1px solid #e5e5ea; border-radius: 10px; padding: 16px; text-align: center; }
.stat-number { font-size: 1.75rem; font-weight: 700; color: #007aff; margin-bottom: 6px; }
.stat-label { color: #6e6e73; font-size: 0.9rem; font-weight: 500; }
.troubleshooting { background: #ffffff; border: 1px solid #e5e5ea; border-radius: 12px; padding: 20px; margin: 16px 0; }
.troubleshooting h3 { color: #1d1d1f; margin-bottom: 12px; }
.problem { background: #f5f5f7; border: 1px solid #e5e5ea; border-radius: 10px; padding: 16px; margin: 12px 0; }
.problem h4 { color: #b00020; margin-bottom: 8px; }
.solution { color: #424245; margin: 8px 0; }
.solution ul { margin: 10px 0; padding-left: 24px; }
.solution li { margin-bottom: 6px; }
.icon { width: 1.25rem; height: 1.25rem; }
.screenshot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 12px; margin: 12px 0; }
.shot { background: #ffffff; border: 1px solid #e5e5ea; border-radius: 10px; padding: 16px; text-align: center; }
.shot img { max-width: 100%; height: auto; border-radius: 6px; }
.caption { margin-top: 6px; font-size: 0.9rem; color: #6e6e73; font-weight: 500; }
.copy-line { display: flex; align-items: center; gap: 8px; }
.copy-btn {
border: 1px solid #e5e5ea;
background: #ffffff;
color: #1d1d1f;
padding: 6px 10px;
border-radius: 8px;
cursor: pointer;
font-size: 0.85rem;
}
.copy-btn:hover { background: #f5f5f7; }
.video-container { position: relative; width: 100%; height: 0; padding-bottom: 56.25%; margin: 18px 0; border-radius: 12px; overflow: hidden; border: 1px solid #e5e5ea; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-fallback { text-align: center; margin: 12px 0; padding: 16px; background: #f5f5f7; border: 1px solid #e5e5ea; border-radius: 10px; }
.video-fallback p { margin: 0; color: #6e6e73; }
/* Subtle de-emphasis of leading emojis in headings */
.toc h2::first-letter,
.section h2::first-letter,
.problem h4::first-letter,
.success h2::first-letter { opacity: 0.35; }
@media (max-width: 768px) {
body { padding: 16px; }
.header h1 { font-size: 1.75rem; }
.content { padding: 16px; }
.section { padding: 16px; }
.stats-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>ContextClipCalendar</h1>
<p>AI 기반 스마트 일정 등록 도구</p>
<p>Gemini 를 활용한 구글 캘린더 일정 관리</p>
<p>3단계로 끝! 클릭 몇 번이면 바로 사용 시작</p>
</div>
<div class="content">
<!-- 목차 -->
<div class="toc">
<h2>목차</h2>
<ol>
<li><a href="#intro">프로그램 소개</a></li>
<li><a href="#prerequisites">필요한 준비물</a></li>
<li><a href="#install">설치 방법</a></li>
<li><a href="#usage">사용 방법</a></li>
<li><a href="#conclusion">맺음말</a></li>
</ol>
</div>
<!-- 프로그램 소개 -->
<div class="section" id="intro">
<h2>프로그램 소개</h2>
<div class="highlight">
<h4>ContextClipCalendar란?</h4>
<p>ContextClipCalendar는 <strong>AI 기반 스마트 일정 등록 도구</strong>입니다. 복잡한 텍스트를 복사하고 클릭 한 번으로 Google Calendar에 일정을 자동 등록할 수 있습니다.</p>
</div>
<h3>주요 특징</h3>
<ul style="padding-left: 30px;">
<li><strong>간편한 사용법</strong>: 텍스트 복사 → 클릭 한 번으로 끝</li>
<li><strong>AI 자동 분석</strong>: Gemini AI가 핵심 정보를 자동으로 추출</li>
<li><strong>Google Calendar 연동</strong>: 자동으로 캘린더에 일정 등록</li>
<li><strong>다양한 소스 지원</strong>: 이메일, Slack, 카카오톡 등 어디서든 사용 가능</li>
</ul>
<div class="stats-grid">
<div class="stat-card">
<div class="stat-number">3</div>
<div class="stat-label">단계로 완료</div>
</div>
<div class="stat-card">
<div class="stat-number">1</div>
<div class="stat-label">클릭으로 등록</div>
</div>
<div class="stat-card">
<div class="stat-number">AI</div>
<div class="stat-label">자동 분석</div>
</div>
</div>
<div class="success">
<h4>왜 ContextClipCalendar를 사용해야 할까요?</h4>
<ul style="padding-left: 30px;">
<li><strong>시간 절약</strong>: 복잡한 일정 입력 과정을 단순화</li>
<li><strong>정확성</strong>: AI가 핵심 정보를 정확히 추출</li>
<li><strong>편의성</strong>: 어디서든 텍스트만 복사하면 바로 등록</li>
<li><strong>무료</strong>: Gemini API 무료 할당량으로 충분히 사용 가능</li>
</ul>
</div>
</div>
<!-- 필요한 준비물 -->
<div class="section" id="prerequisites">
<h2>필요한 준비물</h2>
<div class="step">
<h4>기본 요구사항</h4>
<ul>
<li><strong>Google 계정</strong> (Gmail 계정이면 됩니다)</li>
<li><strong>Chrome 브라우저</strong> (최신 버전 권장)</li>
<li><strong>인터넷 연결</strong></li>
<li><strong>5-10분의 설정 시간</strong></li>
</ul>
</div>
<div class="step">
<h4>Gemini API 키 발급 방법</h4>
<p>ContextClipCalendar가 AI 기능을 사용하기 위해 필요한 API 키를 발급받아야 합니다.</p>
<ol>
<li><strong>Google AI Studio 접속</strong>
<p>Chrome 브라우저를 열고 다음 링크로 이동하세요:</p>
<a href="https://aistudio.google.com/app/apikey" target="_blank" class="link-button">Google AI Studio 접속</a>
</li>
<li><strong>API 키 생성</strong>
<ol style="padding-left: 30px;">
<li>Google 계정으로 로그인</li>
<li><strong>"Create API key"</strong> 또는 <strong>"API 키 만들기"</strong> 버튼 클릭</li>
<li>프로젝트 선택 또는 생성:
<ul style="padding-left: 30px;">
<li><strong>기존 프로젝트가 있다면</strong>: 드롭다운에서 선택</li>
<li><strong>프로젝트가 없다면</strong>: "Create in new project" 선택</li>
</ul>
</li>
</ol>
</li>
<li><strong>API 키 복사 및 저장</strong>
<ol style="padding-left: 30px;">
<li>생성된 API 키를 클릭하여 전체 선택</li>
<li><code>Ctrl+C</code> (Windows) 또는 <code>Cmd+C</code> (Mac)로 복사</li>
<li>메모장이나 텍스트 파일에 붙여넣기하여 안전하게 저장</li>
<li>나중에 찾기 쉽게 "Gemini API Key"라고 제목을 붙이세요</li>
</ol>
</li>
</ol>
</div>
<div class="warning">
<h4>중요한 보안 규칙</h4>
<ul style="padding-left: 30px;">
<li><strong>API 키는 비밀입니다</strong>: 다른 사람과 절대 공유하지 마세요</li>
<li><strong>안전한 저장</strong>: 공용 컴퓨터에 저장하지 마세요</li>
<li><strong>의심스러운 활동 발견 시</strong>: 즉시 Google AI Studio에서 API 키를 삭제하고 새로 생성하세요</li>
</ul>
</div>
<div class="highlight">
<h4>API 키란?</h4>
<p>API 키는 Google의 AI 서비스(Gemini)를 사용할 수 있는 <strong>디지털 열쇠</strong>입니다. ContextClipCalendar가 AI를 통해 텍스트를 분석하고 일정을 추출할 때 필요한 인증 정보입니다.</p>
</div>
</div>
<!-- 설치 방법 -->
<div class="section" id="install">
<h2>설치 방법</h2>
<div class="step">
<h4>Chrome 웹 스토어에서 설치</h4>
<p>ContextClipCalendar를 Chrome 웹 스토어에서 설치하세요.</p>
<a class="link-button" target="_blank" href="https://chromewebstore.google.com/detail/contextclipcalendar/eemoppinnihhinhleefedhbpkbhkabob?hl=ko&utm_source=ext_sidebar">Chrome 웹 스토어에서 설치</a>
<div class="screenshot-grid">
<div class="shot">
<img src="https://aucus.github.io/ContextClipCalendar/screenshot-toolbar-pin.png" alt="Chrome 툴바에서 확장 프로그램을 고정하는 화면" />
<div class="caption">Chrome 웹 스토어에서 'Chrome에 추가' 클릭</div>
</div>
</div>
</div>
<div class="step">
<h4>확장 프로그램을 툴바에 고정</h4>
<p>설치 후 주소창 오른쪽의 퍼즐 아이콘(확장 프로그램)을 클릭한 뒤, ContextClipCalendar 우측의 핀 아이콘을 클릭해 고정하세요.</p>
<div class="screenshot-grid">
<div class="shot">
<img src="https://aucus.github.io/ContextClipCalendar/screenshot-toolbar-pin.png" alt="Chrome 툴바에서 확장 프로그램을 고정하는 화면" />
<div class="caption">퍼즐 아이콘 → ContextClipCalendar → 핀 아이콘 클릭</div>
</div>
</div>
</div>
<div class="step">
<h4>API 키 설정</h4>
<p>ContextClipCalendar 아이콘을 클릭하여 팝업을 열고, 설정 페이지로 이동하여 API 키를 입력하세요.</p>
<div class="screenshot-grid">
<div class="shot">
<img src="https://aucus.github.io/ContextClipCalendar/screenshot-popup-interface.png" alt="ContextClipCalendar 팝업 인터페이스 화면" />
<div class="caption">팝업 인터페이스에서 설정 접근</div>
</div>
<div class="shot">
<img src="https://aucus.github.io/ContextClipCalendar/screenshot-options.png" alt="ContextClipCalendar 옵션 설정 페이지" />
<div class="caption">옵션 페이지에서 Gemini API 키 입력</div>
</div>
</div>
<ol>
<li><strong>팝업에서 '설정' 버튼 클릭</strong> 또는 툴바의 ContextClipCalendar 아이콘을 우클릭 → '옵션' 클릭</li>
<li><strong>Gemini API 키 입력</strong>: 발급받은 API 키를 입력하고 '저장' 클릭</li>
<li><strong>API 키 테스트</strong>: 'API 키 테스트' 버튼으로 연결 상태 확인</li>
<li><strong>Google Calendar 연동</strong>: OAuth 인증을 통해 Google Calendar와 연동</li>
</ol>
</div>
<div class="success">
<h4>설정 완료 체크리스트</h4>
<ul style="padding-left: 30px;">
<li>✅ ContextClipCalendar 확장 프로그램 설치 완료</li>
<li>✅ 툴바에 확장 프로그램 고정 완료</li>
<li>✅ Gemini API 키 입력 및 테스트 완료</li>
<li>✅ Google Calendar 연동 완료</li>
</ul>
</div>
</div>
<!-- 사용 방법 -->
<div class="section" id="usage">
<h2>사용 방법</h2>
<div class="step">
<h4>기본 사용법 (3단계)</h4>
<ol>
<li><strong>텍스트 복사</strong>: 일정이 포함된 텍스트를 선택하고 복사 (Ctrl+C 또는 Cmd+C)</li>
<li><strong>확장 프로그램 실행</strong>: 툴바의 ContextClipCalendar 아이콘 클릭</li>
<li><strong>일정 등록</strong>: AI가 분석한 결과를 확인하고 Google Calendar에 등록</li>
</ol>
</div>
<div class="step">
<h4>실제 사용 예시</h4>
<div class="highlight">
<h4>예시 1: 이메일에서 일정 추출</h4>
<p><strong>원본 텍스트:</strong> "안녕하세요. 내일 오후 3시에 회의실 A에서 팀 미팅이 있습니다. 참석 부탁드립니다."</p>
<p><strong>AI 분석 결과:</strong></p>
<ul style="padding-left: 30px;">
<li>제목: 팀 미팅</li>
<li>시간: 내일 오후 3시</li>
<li>장소: 회의실 A</li>
</ul>
</div>
<div class="highlight">
<h4>예시 2: Slack 메시지에서 일정 추출</h4>
<p><strong>원본 텍스트:</strong> "다음주 화요일 2시에 클라이언트 미팅이 있어요. 강남역 근처 카페에서 만나요."</p>
<p><strong>AI 분석 결과:</strong></p>
<ul style="padding-left: 30px;">
<li>제목: 클라이언트 미팅</li>
<li>시간: 다음주 화요일 2시</li>
<li>장소: 강남역 근처 카페</li>
</ul>
</div>
</div>
<div class="step">
<h4>사용법 영상</h4>
<p>실제 사용법을 영상으로 확인해보세요! 3분 만에 모든 기능을 체험할 수 있습니다.</p>
<div class="video-container">
<iframe
width="100%"
height="400"
src="https://www.youtube.com/embed/jwMakTGBFsE?rel=0&modestbranding=1&showinfo=0"
title="ContextClipCalendar 사용법 영상"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
loading="lazy">
</iframe>
</div>
<div class="video-fallback">
<p>영상이 재생되지 않나요? <a href="https://www.youtube.com/watch?v=jwMakTGBFsE" target="_blank" class="link-button">YouTube에서 직접 보기</a></p>
</div>
<div class="highlight" style="margin-top: 1rem;">
<h4>영상에서 확인할 수 있는 내용</h4>
<ul style="padding-left: 30px;">
<li><strong>설치부터 설정까지</strong>: 확장 프로그램 설치 및 API 키 설정 과정</li>
<li><strong>실제 사용 예시</strong>: 이메일, 슬랙, 카카오톡 텍스트를 복사해서 일정 등록</li>
<li><strong>AI 분석 결과</strong>: 복잡한 텍스트가 어떻게 깔끔한 일정으로 변환되는지</li>
<li><strong>Google Calendar 연동</strong>: 자동으로 캘린더에 등록되는 과정</li>
</ul>
</div>
</div>
<div class="step">
<h4>최적 사용법 팁</h4>
<ul>
<li><strong>명확한 텍스트 복사</strong>: "내일 오후 3시 팀 미팅" 같은 명확한 표현 사용</li>
<li><strong>시간 정보 포함</strong>: "오늘", "내일", "다음주" 등 시간 표현 포함</li>
<li><strong>장소 정보 포함</strong>: 회의실, 주소 등 장소 정보 포함</li>
<li><strong>여러 일정이 있는 경우</strong>: 하나씩 나누어서 복사하여 등록</li>
</ul>
</div>
<div class="stats-grid">
<div class="stat-card">
<div class="stat-number">1,000</div>
<div class="stat-label">일일 요청 한도</div>
</div>
<div class="stat-card">
<div class="stat-number">15</div>
<div class="stat-label">분당 요청 한도</div>
</div>
<div class="stat-card">
<div class="stat-number">무료</div>
<div class="stat-label">비용</div>
</div>
</div>
<div class="highlight">
<h4>무료 버전으로 충분한 이유</h4>
<p><strong>1,000번의 일일 요청</strong>은 일반적인 개인 사용자에게 매우 충분합니다:</p>
<ul style="padding-left: 30px;">
<li>하루에 10번의 일정 등록 = 100일 사용 가능</li>
<li>하루에 50번의 일정 등록 = 20일 사용 가능</li>
<li>대부분의 사용자는 하루에 5-20번 정도만 사용</li>
<li>월간으로는 최대 30,000회까지 사용 가능 (일일 1,000회 × 30일)</li>
</ul>
</div>
</div>
<!-- 맺음말 -->
<div class="section" id="conclusion">
<h2>맺음말</h2>
<div class="success">
<h4>축하합니다! 🎉</h4>
<p>이제 ContextClipCalendar를 완전히 사용할 수 있습니다. AI 기반 스마트 일정 등록으로 더욱 효율적인 일정 관리를 경험해보세요!</p>
</div>
<div class="step">
<h4>다음 단계</h4>
<ol>
<li><strong>첫 번째 일정 등록</strong>: 텍스트를 복사하고 확장 프로그램을 실행해보세요</li>
<li><strong>AI 분석 확인</strong>: AI가 자동으로 일정을 분석하는 것을 확인하세요</li>
<li><strong>Google Calendar 확인</strong>: Google Calendar에 일정이 등록되는 것을 확인하세요</li>
<li><strong>다양한 소스 테스트</strong>: 이메일, Slack, 카카오톡 등 다양한 소스에서 테스트해보세요</li>
</ol>
</div>
<div class="highlight">
<h4>문제가 발생한다면?</h4>
<ul style="padding-left: 30px;">
<li><strong>API 키 문제</strong>: Google AI Studio에서 API 키 상태 확인</li>
<li><strong>연결 문제</strong>: 인터넷 연결 및 브라우저 새로고침</li>
<li><strong>권한 문제</strong>: Google Calendar 연동 재설정</li>
<li><strong>기타 문의</strong>: <a href="https://github.com/aucus/ContextClipCalendar/issues" target="_blank">GitHub Issues</a>에 문의</li>
</ul>
</div>
<div class="step">
<h4>추가 리소스</h4>
<ul>
<li><strong>Chrome 웹 스토어</strong>: <a href="https://chromewebstore.google.com/detail/contextclipcalendar/eemoppinnihhinhleefedhbpkbhkabob?hl=ko&utm_source=ext_sidebar" target="_blank">확장 프로그램 페이지</a></li>
<li><strong>GitHub 저장소</strong>: <a href="https://github.com/aucus/ContextClipCalendar" target="_blank">소스 코드 및 이슈</a></li>
<li><strong>Google AI Studio</strong>: <a href="https://aistudio.google.com/" target="_blank">API 키 관리</a></li>
</ul>
</div>
<div class="success">
<h4>마지막으로</h4>
<p><strong>즐거운 일정 관리 되세요!</strong> ContextClipCalendar가 여러분의 업무 효율성을 높이는 데 도움이 되기를 바랍니다. 🚀</p>
</div>
</div>
</div>
</div>
<script>
// 간단한 복사 기능 (주소/문자열 복사)
document.addEventListener('click', function(e) {
var t = e.target;
if (t && t.classList.contains('copy-btn')) {
var text = t.getAttribute('data-copy') || '';
if (!text) { return; }
navigator.clipboard.writeText(text).then(function() {
var original = t.textContent;
t.textContent = '복사됨!';
setTimeout(function() { t.textContent = original; }, 1200);
}).catch(function() {
alert('복사를 지원하지 않는 브라우저입니다. 직접 복사해주세요.');
});
}
});
</script>
</body>
</html>