diff --git a/package.json b/package.json
index 497174f..b56a3b0 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "recycle-study-extension",
- "version": "1.1.1",
+ "version": "1.1.2",
"description": "복습 URL 저장 크롬 익스텐션",
"type": "module",
"scripts": {
diff --git a/public/manifest.json b/public/manifest.json
index 016f2e6..f5fe730 100644
--- a/public/manifest.json
+++ b/public/manifest.json
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Recycle Study",
- "version": "1.1.1",
+ "version": "1.1.2",
"description": "복습 URL을 저장하고 스케줄에 따라 알림을 받는 익스텐션",
"permissions": [
"storage",
diff --git a/public/popup.css b/public/popup.css
index 57a2253..7b5248b 100644
--- a/public/popup.css
+++ b/public/popup.css
@@ -167,6 +167,17 @@ body {
color: #666;
}
+/* 다음 리뷰 정보 */
+.next-review-info {
+ margin-bottom: 12px;
+ padding: 8px 12px;
+ background-color: #eaf4fb;
+ border-radius: 6px;
+ font-size: 12px;
+ color: #2980b9;
+ text-align: center;
+}
+
/* 저장 결과 */
.result {
margin-top: 16px;
diff --git a/public/popup.html b/public/popup.html
index e5b1515..a7235f2 100644
--- a/public/popup.html
+++ b/public/popup.html
@@ -38,6 +38,10 @@
Recycle Study
+
+
+
+
diff --git a/src/api.js b/src/api.js
index ecd7784..bcba780 100644
--- a/src/api.js
+++ b/src/api.js
@@ -176,3 +176,16 @@ export async function updateNotificationTime(identifier, hour, minute) {
body: { notificationTime: [hour, minute] }
});
}
+
+/**
+ * 다음 리뷰 정보 조회
+ * @param {string} identifier - 디바이스 식별자
+ * @returns {Promise