-
-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
94b00c2
commit 610b0e2
Showing
55 changed files
with
936 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,5 @@ export default defineConfig({ | |
}, | ||
clean: true, | ||
format: ['iife'], | ||
dts: true, | ||
shims: true, | ||
minify: true, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Browser extension | ||
|
||
> DevTools Browser extension, still under development... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<title></title> | ||
</head> | ||
<body> | ||
<script src="../dist/devtools-background.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title></title> | ||
<style> | ||
html, | ||
body { | ||
height: 100%; | ||
} | ||
#container { | ||
display: flex; | ||
height: 100%; | ||
} | ||
</style> | ||
<link | ||
rel="stylesheet" | ||
type="text/css" | ||
href="../client/devtools-panel.css" | ||
/> | ||
</head> | ||
<body> | ||
<div id="container"> | ||
<div id="app"></div> | ||
</div> | ||
<script src="../dist/devtools-panel.js"></script> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ | ||
"background": { | ||
"persistent": true, | ||
"scripts": [ | ||
"dist/background.js" | ||
] | ||
}, | ||
"browser_action": { | ||
"default_icon": { | ||
"16": "icons/16-gray.png", | ||
"48": "icons/48-gray.png", | ||
"128": "icons/128-gray.png" | ||
}, | ||
"default_popup": "popups/not-found.html", | ||
"default_title": "Vue DevTools" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"js": [ | ||
"dist/injection.js" | ||
], | ||
"matches": [ | ||
"<all_urls>" | ||
], | ||
"run_at": "document_start" | ||
}, | ||
{ | ||
"js": [ | ||
"dist/devtools-overlay.js" | ||
], | ||
"matches": [ | ||
"<all_urls>" | ||
], | ||
"run_at": "document_idle" | ||
} | ||
], | ||
"content_security_policy": "script-src 'self'; object-src 'self'", | ||
"description": "DevTools browser extension for Vue.js", | ||
"devtools_page": "devtools-background.html", | ||
"icons": { | ||
"16": "icons/16-beta.png", | ||
"48": "icons/48-beta.png", | ||
"128": "icons/128-beta.png" | ||
}, | ||
"manifest_version": 2, | ||
"name": "Vue.js DevTools", | ||
"permissions": [ | ||
"<all_urls>", | ||
"storage" | ||
], | ||
"version": "7.0.0.1", | ||
"version_name": "7.0.0 beta 1", | ||
"web_accessible_resources": [ | ||
"dist/user-app.js", | ||
"client/devtools-panel.css", | ||
"client/devtools-panel.js" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"name": "@vue/devtools-firefox-extension", | ||
"type": "module", | ||
"version": "7.0.0-beta.1", | ||
"private": true, | ||
"author": "webfansplz", | ||
"license": "MIT", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=production tsup", | ||
"dev": "cross-env NODE_ENV=development tsup --watch" | ||
}, | ||
"dependencies": { | ||
"@vue/devtools-core": "workspace:^", | ||
"@vue/devtools-kit": "workspace:^", | ||
"@vue/devtools-shared": "workspace:^" | ||
}, | ||
"devDependencies": { | ||
"@vitejs/plugin-vue": "^5.0.5", | ||
"vue": "^3.4.27" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<meta charset="utf-8" /> | ||
<link rel="stylesheet" type="text/css" href="./popup.css" /> | ||
|
||
<p> | ||
<strong>Vue.js is detected on this page.</strong><br /> | ||
Devtools inspection is not available because it's in production mode or | ||
explicitly disabled by the author. | ||
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<meta charset="utf-8" /> | ||
<link rel="stylesheet" type="text/css" href="./popup.css" /> | ||
|
||
<p> | ||
<strong>Nuxt + Vue.js is detected on this page.</strong><br /> | ||
Devtools inspection is not available because it's in production mode or | ||
explicitly disabled by the author. | ||
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<meta charset="utf-8" /> | ||
<link rel="stylesheet" type="text/css" href="./popup.css" /> | ||
|
||
<div class="flex"> | ||
<div class="screenshot"> | ||
<img src="./devtools-screenshot.png" alt="Screenshot" /> | ||
</div> | ||
|
||
<div> | ||
<p> | ||
<strong>Vue.js is detected on this page.</strong><br /> | ||
Open DevTools and look for the Vue panel. | ||
</p> | ||
|
||
<p> | ||
<a | ||
href="https://devtools-next.vuejs.org/help/troubleshooting" | ||
target="_blank" | ||
>Troubleshooting</a | ||
> | ||
</p> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<meta charset="utf-8" /> | ||
<link rel="stylesheet" type="text/css" href="./popup.css" /> | ||
|
||
<div class="flex"> | ||
<div class="screenshot"> | ||
<img src="./devtools-screenshot.png" alt="Screenshot" /> | ||
</div> | ||
|
||
<div> | ||
<p> | ||
<strong>Nuxt + Vue.js is detected on this page.</strong><br /> | ||
Open DevTools and look for the Vue panel. | ||
</p> | ||
|
||
<p> | ||
<a | ||
href="https://devtools-next.vuejs.org/help/troubleshooting" | ||
target="_blank" | ||
>Troubleshooting</a | ||
> | ||
</p> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<meta charset="utf-8" /> | ||
<link rel="stylesheet" type="text/css" href="./popup.css" /> | ||
|
||
<p class="short-paragraph"> | ||
<strong>Vue.js not detected</strong> | ||
</p> |
Oops, something went wrong.