태그와 함께 북마크하세요. 저장하고 수집한 뒤에 나중에 바구니에서 저장된 북마크를 확인해보세요!
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "바구니 익스텐션",
"description": "태그와 함께 북마크하세요. 저장하고 수집한 뒤에 나중에 바구니에서 저장된 북마크를 확인해보세요!",
"version": "1.1.0",
"icons": {
"16": "./pick16.png",
"32": "./pick32.png",
"48": "./pick48.png",
"128": "./pick128.png"
},
"homepage_url": "https://app.baguni.kr",
"permissions": [
"tabs",
"activeTab",
"cookies",
"storage",
"contextMenus"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_popup": "index.html"
},
"host_permissions": [
"https://app.baguni.kr/",
"https://app.baguni.kr/",
"https://api.baguni.kr/api"
]
}