feat: 기본 기능 구현

This commit is contained in:
2025-11-09 15:18:08 +09:00
commit 218638b539
9 changed files with 506 additions and 0 deletions

17
manifest.json Normal file
View File

@@ -0,0 +1,17 @@
{
"manifest_version": 3,
"name": "New Tab Quick Links",
"version": "1.0",
"description": "새 탭에서 자주 사용하는 링크 목록을 관리하고 빠르게 접근할 수 있습니다",
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"permissions": [
"storage"
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}