chrome에 빨간줄 뜰 때 해결 방법

2023. 1. 25. 00:08프로그래밍/Chrome Extension

Typescript로 개발하다보면 chrome is not defined 에러가 발생한다.
VSCode에서 chrome에서 빨간줄이 뜰 때, 다음과 같이 해보자.

1. @types/chrome을 설치한다.

npm i -D @types/chorome

2. 파일 최상단에 다음을 추가한다.

/// <reference types="chrome"/>