갖고 싶은 아이템 편하게 한 곳에 저장하고 쇼핑하세요! ✨
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": "위시버킷 WISHBUCKET",
"version": "0.0.13",
"description": "갖고 싶은 아이템 편하게 한 곳에 저장하고 쇼핑하세요! ✨",
"permissions": [
"storage",
"tabs"
],
"options_page": "src/pages/options/index.html",
"background": {
"service_worker": "src/pages/background/index.js",
"type": "module"
},
"action": {
"default_icon": "icon-34.png"
},
"icons": {
"16": "icon-saved.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"js": [
"src/pages/content/index.js"
],
"css": [
"assets/css/contentStyle17134289775.chunk.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"assets/js/*.js",
"assets/css/*.css",
"icon-128.png",
"icon-saved.png",
"icon-34.png",
"loader.gif",
"check.png",
"saveButton.svg"
],
"matches": [
"*://*/*"
]
}
]
}