feat: pip copilot window
parents
Showing
.gitignore
0 → 100644
.prettierrc
0 → 100644
.vscode/extensions.json
0 → 100644
README.md
0 → 100644
anything-copilot.zip
0 → 100644
File added
env.d.ts
0 → 100644
esbuild.mjs
0 → 100644
guide.html
0 → 100644
manifest.ts
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
package.json
0 → 100644
| { | |||
| "name": "picture-in-picture", | |||
| "version": "0.0.0", | |||
| "private": true, | |||
| "scripts": { | |||
| "dev:page": "vite build --watch", | |||
| "dev:content": "vite build --watch -c vite.content.config.ts", | |||
| "dev:js": "node esbuild.mjs --watch", | |||
| "dev": "run-p dev:page dev:content dev:js", | |||
| "build": "run-p type-check build:js build:content \"build-only {@}\" --", | |||
| "preview": "vite preview", | |||
| "build-only": "vite build", | |||
| "build:content": "vite build -c vite.content.config.ts", | |||
| "build:js": "node esbuild.mjs", | |||
| "type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false", | |||
| "zip:win": "7z a anything-copilot.zip .\\dist\\*", | |||
| "zip": "" | |||
| }, | |||
| "dependencies": { | |||
| "vue": "^3.3.4" | |||
| }, | |||
| "devDependencies": { | |||
| "@tsconfig/node18": "^18.2.2", | |||
| "@types/chrome": "^0.0.251", | |||
| "@types/node": "^18.18.5", | |||
| "@vitejs/plugin-vue": "^4.4.0", | |||
| "@vitejs/plugin-vue-jsx": "^3.0.2", | |||
| "@vue/tsconfig": "^0.4.0", | |||
| "autoprefixer": "^10.4.16", | |||
| "npm-run-all2": "^6.1.1", | |||
| "postcss": "^8.4.31", | |||
| "tailwindcss": "^3.3.5", | |||
| "typescript": "~5.2.0", | |||
| "vite": "^4.4.11", | |||
| "vite-plugin-svgr": "^4.1.0", | |||
| "vue-tsc": "^1.8.19" | |||
| } | |||
| } |
popup.html
0 → 100644
postcss.config.js
0 → 100644
public/bard.svg
0 → 100644
public/chatgpt.svg
0 → 100644
public/claude-ai.svg
0 → 100644
public/favicon.ico
0 → 100644
4.19 KB
public/logo.png
0 → 100644
1.54 KB
public/logo.svg
0 → 100644
public/tiktok.svg
0 → 100644
src.zip
0 → 100644
File added
src/assets/base.css
0 → 100644
src/assets/logo.svg
0 → 100644
src/assets/main.css
0 → 100644
src/bg/index.ts
0 → 100644
src/content/App.vue
0 → 100644
src/content/index.ts
0 → 100644
src/content/main.ts
0 → 100644
src/content/pip.ts
0 → 100644
src/content/store.ts
0 → 100644
src/content/ui.ts
0 → 100644
src/pages/Guide.vue
0 → 100644
src/pages/Popup.vue
0 → 100644
src/pages/guide.ts
0 → 100644
src/pages/popup.ts
0 → 100644
src/types/pip.ts
0 → 100644
src/utils/dom.ts
0 → 100644
src/utils/ext.ts
0 → 100644
tailwind.config.js
0 → 100644
tsconfig.app.json
0 → 100644
tsconfig.json
0 → 100644
tsconfig.node.json
0 → 100644
utils/manifest-plugin.ts
0 → 100644
vite.config.ts
0 → 100644
vite.content.config.ts
0 → 100644