This commit is contained in:
cilame 2023-02-11 00:40:34 +08:00
parent db2bfa6feb
commit d3125bede3
2 changed files with 28 additions and 0 deletions

11
devtools.html Normal file
View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title></title>
<script type="text/javascript" src="./devtools.js"></script>
</head>
<body>
</body>
</html>

17
devtools.js Normal file
View File

@ -0,0 +1,17 @@
chrome.devtools.panels.create(
'v_opitons',
null,
'options.html'
);
chrome.devtools.panels.create(
'v_diff',
null,
'diff_text.html'
);
chrome.devtools.panels.create(
'v_ast',
null,
'astexplorer_babel.html'
);