chrome 공식 문서 >>
https://developer.chrome.com/docs/extensions/mv3/getstarted/development-basics/
Source Code
>> manifest.json
{
"manifest_version": 3,
"name": "Hello Extensions",
"description": "Base Level Extension",
"version": "1.0",
"action": {
"default_popup": "hello.html",
"default_icon": "hello_extensions.png"
}
}
>> hello.html
<html>
<body>
<h1>Hello Extensions</h1>
</body>
</html>
Loading an unpacked extension
Pinning the extensions
Result
반응형
'개발' 카테고리의 다른 글
git. merge strategy (1) | 2023.10.24 |
---|---|
[chrome plugin] 단축키로 크롬 플러그인 연동 (suggested_key) (0) | 2023.09.30 |
strong consistency vs eventual consistency (0) | 2023.06.18 |
[번역] 엔터프라이즈 어플리케이션에서 파사드 디자인 패턴의 3가지 유스케이스 (1) | 2023.06.04 |
레이어드 아키텍처 (계층형 아키텍쳐)와 헥사고날 아키텍처 (육각형 아키텍쳐) (1) | 2022.11.13 |