방금 Chrome 확장 프로그램으로 시작했는데 백그라운드 js에서 콘솔에 로그인 할 수 없습니다. 구문 오류 등으로 인해 오류가 발생하면 오류 메시지도 찾을 수 없습니다.
내 매니페스트 파일 :
{
"name": "My First Extension",
"version": "1.0",
"manifest_version": 2,
"description": "The first extension that I made.",
"browser_action": {
"default_icon": "icon.png"
},
"background": {
"scripts": ["background.js"]
},
"permissions": [
"pageCapture",
"tabs"
]
}
background.js :
alert("here");
console.log("Hello, world!")
확장을로드하면 경고가 표시되지만 콘솔에 아무것도 기록되지 않습니다. 내가 뭘 잘못하고 있죠?