测视例

This commit is contained in:
xu_yanfeng
2024-12-14 10:12:00 +08:00
parent 625b6d6ee9
commit d7012997b7
15 changed files with 124 additions and 0 deletions

19
hello-chrome/index.html Normal file
View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="" style="width: 100%; height: 100%; margin: 0; padding: 0">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>index</title>
<script defer src="index.js"></script>
</head>
<body style="width: 100%; height: 100%; margin: 0; padding: 0">
<script type="text/javascript">
const str = '[{"label":"devtools.html","href":"devtools.html"},{"label":"options.html","href":"options.html"},{"label":"popup.html","href":"popup.html"}]';
window.pluginPanels = JSON.parse(str);
</script>
<div id="app" style="width: 100%; height: 100%; margin: 0; padding: 0; background-color: #ffffff; display: flex; flex-direction: column"></div>
</body>
</html>