From d3125bede3bb87012518d8ef798b64d7b5324ac5 Mon Sep 17 00:00:00 2001 From: cilame Date: Sat, 11 Feb 2023 00:40:34 +0800 Subject: [PATCH] add --- devtools.html | 11 +++++++++++ devtools.js | 17 +++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 devtools.html create mode 100644 devtools.js diff --git a/devtools.html b/devtools.html new file mode 100644 index 0000000..aee303a --- /dev/null +++ b/devtools.html @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/devtools.js b/devtools.js new file mode 100644 index 0000000..91bd637 --- /dev/null +++ b/devtools.js @@ -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' +); \ No newline at end of file