UNPKG
react-chrome-extension-cli
Version:
latest (0.2.2)
0.2.2
0.2.1
0.2.0
The CLI for your next Chrome Extension using React
github.com/dujuncheng/react-chrome-extension-cli
react-chrome-extension-cli
/
templates
/
popup
/
public
/
popup.html
15 lines
(13 loc)
•
286 B
HTML
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE
html
>
<
html
lang
=
"en"
>
<
head
>
<
meta
charset
=
"UTF-8"
>
<
title
>
My React Chrome Extension
</
title
>
<
link
rel
=
"stylesheet"
href
=
"popup.css"
/>
</
head
>
<
body
>
<!-- react 挂载的根节点 -->
<
div
id
=
"root"
>
</
div
>
<
script
src
=
"popup.js"
>
</
script
>
</
body
>
</
html
>