gitextract_hjfdfrq1/ ├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── .npmrc ├── .postcssrc ├── CHANGELOG.md ├── cypress.json ├── docs/ │ ├── depoly.md │ ├── plugin.md │ └── snapshot.md ├── gulpfile.js ├── jest.config.js ├── package.json ├── public/ │ ├── index.html │ ├── index_cdn.html │ ├── style_import1.css │ ├── style_import2.css │ ├── style_link.css │ ├── test_application.js │ ├── test_console.js │ ├── test_network.js │ ├── test_plugin.js │ └── vue.js ├── readme.md ├── src/ │ ├── App.vue │ ├── components/ │ │ ├── VFootBar.vue │ │ ├── VHighlightView.vue │ │ ├── VIcon.vue │ │ ├── VJSONViewer/ │ │ │ ├── JSONTextBlock.vue │ │ │ ├── JSONTextInlineBlock.vue │ │ │ ├── VJSONViewer.vue │ │ │ └── index.js │ │ ├── VTabBar.vue │ │ ├── VTabBarItem.vue │ │ └── index.js │ ├── constants/ │ │ ├── PanelType.js │ │ └── index.js │ ├── main.js │ ├── panels/ │ │ ├── application/ │ │ │ ├── ApplicationPanel.vue │ │ │ ├── TabStorage.vue │ │ │ └── XStorage.js │ │ ├── console/ │ │ │ ├── ConsolePanel.vue │ │ │ ├── Message.vue │ │ │ ├── TextBlock.vue │ │ │ └── TextInlineBlock.vue │ │ ├── element/ │ │ │ ├── BoxModel.vue │ │ │ ├── ElementPanel.vue │ │ │ ├── NodeLink.vue │ │ │ ├── NodeView.vue │ │ │ ├── StyleColorValue.vue │ │ │ ├── StyleProperty.vue │ │ │ ├── StyleRule.vue │ │ │ ├── TabComputed.vue │ │ │ ├── TabStyles.vue │ │ │ └── Tag.vue │ │ ├── index.js │ │ ├── network/ │ │ │ ├── HttpStatus.js │ │ │ ├── NetworkPanel.vue │ │ │ ├── NetworkRequest.vue │ │ │ ├── RequestType.js │ │ │ ├── TabHeaders.vue │ │ │ ├── TabPreview.vue │ │ │ └── TabResponse.vue │ │ └── settings/ │ │ └── SettingsPanel.vue │ ├── plugins/ │ │ ├── Plugin.js │ │ ├── index.js │ │ ├── pluginEvents.js │ │ └── pluginManager.js │ ├── polyfill.js │ ├── styles/ │ │ ├── _global.scss │ │ ├── _mixins.scss │ │ ├── _triangles.scss │ │ └── _variables.scss │ └── utils/ │ ├── EventBus.js │ ├── Logger.js │ ├── TaskScheduler.js │ ├── consoleHooks.js │ ├── filters.js │ ├── index.js │ ├── miscs.js │ └── style.js ├── tests/ │ ├── api/ │ │ ├── data/ │ │ │ ├── response.css │ │ │ ├── response.html │ │ │ ├── response.js │ │ │ ├── response.json │ │ │ └── response.txt │ │ └── index.js │ ├── e2e/ │ │ ├── .eslintrc │ │ ├── plugins/ │ │ │ └── index.js │ │ ├── specs/ │ │ │ └── test.js │ │ └── support/ │ │ ├── commands.js │ │ └── index.js │ └── unit/ │ ├── .eslintrc │ └── HelloWorld.spec.js ├── tsconfig.json └── vue.config.js