iDev
크롬 확장 개발 manifest.json
KraZYeom
2012. 5. 14. 01:09
반응형
{
"name" : "Dentist Crocodile",
"version" : "0.1",
"description" : "Dentist Crocodile for Chrome Extension",
"icons" : {
"128" : "icon.png",
"48" : "icon48.png",
"16" : "icon16.png"
},
"background_page" : "background.html",
"browser_action" : {
"default_icon" : "icon16.png",
"default_popup": "background.html"
}
}
"default_popup": "background.html" 이부분을 적지 않으면 popup으로 뜨지 않고 tab이나 new window 등으로 다른 방법으로 하는 방법을 찾아야 한다.
걍 간단하게 "default_popup": "background.html"
반응형