├── .github ├── img.png ├── img_1.png ├── img_2.png ├── img_3.png ├── img_4.png ├── img_5.png └── img_6.png ├── .gitignore ├── config.json ├── dist └── main.js ├── header ├── UserScript.ts ├── Vue.png └── index.ts ├── package.json ├── patches └── pinia+2.1.7.patch ├── plugins ├── header.ts └── sync.ts ├── public └── vite.svg ├── readme.md ├── server.cjs ├── src ├── hook.ts ├── index.ts ├── main.ts ├── pinia.d.ts ├── vue2.ts └── vue3.ts ├── tampermonkey.d.ts ├── temp └── Tampermonkey │ └── sync │ └── .gitkeep ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.github/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/.github/img.png -------------------------------------------------------------------------------- /.github/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/.github/img_1.png -------------------------------------------------------------------------------- /.github/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/.github/img_2.png -------------------------------------------------------------------------------- /.github/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/.github/img_3.png -------------------------------------------------------------------------------- /.github/img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/.github/img_4.png -------------------------------------------------------------------------------- /.github/img_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/.github/img_5.png -------------------------------------------------------------------------------- /.github/img_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/.github/img_6.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/.gitignore -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/config.json -------------------------------------------------------------------------------- /dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/dist/main.js -------------------------------------------------------------------------------- /header/UserScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/header/UserScript.ts -------------------------------------------------------------------------------- /header/Vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/header/Vue.png -------------------------------------------------------------------------------- /header/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/header/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/package.json -------------------------------------------------------------------------------- /patches/pinia+2.1.7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/patches/pinia+2.1.7.patch -------------------------------------------------------------------------------- /plugins/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/plugins/header.ts -------------------------------------------------------------------------------- /plugins/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/plugins/sync.ts -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/public/vite.svg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/readme.md -------------------------------------------------------------------------------- /server.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/server.cjs -------------------------------------------------------------------------------- /src/hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/src/hook.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/pinia.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/src/pinia.d.ts -------------------------------------------------------------------------------- /src/vue2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/src/vue2.ts -------------------------------------------------------------------------------- /src/vue3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/src/vue3.ts -------------------------------------------------------------------------------- /tampermonkey.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/tampermonkey.d.ts -------------------------------------------------------------------------------- /temp/Tampermonkey/sync/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcr1234/vue-devtools-production/HEAD/yarn.lock --------------------------------------------------------------------------------