1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| <!doctype html>
| <html lang="en">
| <head>
| <meta charset="UTF-8" />
| <meta name="viewport" content="width=device-width, initial-scale=1.0" />
| <title>设置页</title>
| <meta name="manifest.side_panel.openPanelOnActionClick" content="true" />
| <meta name="manifest.open_at_install" content="true" />
| <meta name="manifest.side_panel.default_title" content="" />
| <meta name="manifest.side_panel.default_icon" content='{ "16": "images/icon16.jpg", "48": "images/icon16.jpg" }' />
| <script type="module" src="./main.ts"></script>
| </head>
| <body>
| <div id="app"></div>
| </body>
| </html>
|
|