Skip to content

Commit

Permalink
Update package and manifest versions, add dev dependency, and update …
Browse files Browse the repository at this point in the history
…About page
  • Loading branch information
LouisTsang-jk committed Mar 14, 2024
1 parent 9d61bda commit 9973ad0
Show file tree
Hide file tree
Showing 6 changed files with 483 additions and 231 deletions.
6 changes: 3 additions & 3 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"name": "ChatGPT Seal",
"description": "帮助用户在 ChatGPT 的页面上快速输入预设的提示。避免了反复输入相同问题的繁琐操作,让你的交流更加便捷高效。",
"author": "LouisTsang",
"version": "0.1.3",
"version": "0.1.4",
"action": {
"default_popup": "/index.html"
"default_popup": "index.html"
},
"icons": {
"128": "logo.png"
Expand All @@ -22,7 +22,7 @@
"content_scripts": [
{
"matches": ["https://chat.openai.com/*"],
"js": ["/content.js"]
"js": ["src/content.ts"]
}
]
}
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "chatgpt-seal",
"private": true,
"version": "0.1.3",
"version": "0.1.4",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && cp manifest.json dist/manifest.json && cp logo.png dist/logo.png",
"build": "tsc && vite build",
"build:legacy": "tsc && vite build && cp manifest.json dist/manifest.json && cp logo.png dist/logo.png",
"build:zip": "npm run build && cd dist && zip -r ../ChatGPT_Seal.zip .",
"i18n": "node scripts/collect-i18n-values.mjs",
"watch": "vite build --watch",
Expand Down Expand Up @@ -33,6 +34,7 @@
"uuid": "^9.0.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.23",
"@types/chrome": "^0.0.242",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
Expand Down
Loading

0 comments on commit 9973ad0

Please sign in to comment.