Browse Source

feat:初始化派维斯智能体助手 v0.0.1 更新了插件名称 初始版本号 插件描述

alibct 7 months ago
parent
commit
a832bc3ec2
4 changed files with 8 additions and 7 deletions
  1. 1 0
      CHANGELOG.md
  2. 2 2
      README.md
  3. 3 3
      manifest.json
  4. 2 2
      popup.html

+ 1 - 0
CHANGELOG.md

@@ -0,0 +1 @@
+ 

+ 2 - 2
README.md

@@ -1,6 +1,6 @@
-# 我的 Chrome 扩展
+# 派维斯智能体助手
 
-这是一个 Chrome 浏览器扩展项目。
+这是一个 Chrome 浏览器扩展项目,用于辅助用户处理业务流程的智能体助手
 
 ## 安装说明
 

+ 3 - 3
manifest.json

@@ -1,8 +1,8 @@
 {
   "manifest_version": 3,
-  "name": "我的Chrome扩展",
-  "version": "1.0.0",
-  "description": "一个新的Chrome浏览器扩展",
+  "name": "派维斯智能体助手",
+  "version": "0.0.1",
+  "description": "一个辅助用户处理业务流程的智能体助手",
   "permissions": [],
   "action": {
     "default_popup": "popup.html",

+ 2 - 2
popup.html

@@ -2,12 +2,12 @@
 <html>
   <head>
     <meta charset="UTF-8" />
-    <title>我的Chrome扩展</title>
+    <title>派维斯智能体助手</title>
     <link rel="stylesheet" href="css/popup.css" />
   </head>
   <body>
     <div class="container">
-      <h1>我的Chrome扩展</h1>
+      <h1>派维斯智能体助手</h1>
       <p>欢迎使用!</p>
     </div>
     <script src="js/popup.js"></script>