26 lines
625 B
JSON
26 lines
625 B
JSON
|
|
{
|
|
"manifest_version": 3,
|
|
"name": "찜하기 자동화",
|
|
"version": "1.0",
|
|
"description": "네이버 스마트스토어에서 찜하기 버튼을 자동으로 누릅니다.",
|
|
"permissions": ["scripting", "storage", "tabs"],
|
|
"host_permissions": ["https://smartstore.naver.com/*"],
|
|
"action": {
|
|
"default_icon": {
|
|
"16": "icon.png"
|
|
},
|
|
"default_title": "찜하기 자동화",
|
|
"default_popup": "options.html"
|
|
},
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://smartstore.naver.com/*"],
|
|
"js": ["content.js"]
|
|
}
|
|
]
|
|
}
|