Dashworks
Dash AI is your company's knowledge assistant.
什么是Dashworks?
Dashworks是由https://dashworks.ai开发的Chrome扩展程序,该扩展的主要功能是“Dash AI is your company's knowledge assistant.”。
扩展截图
下载Dashworks扩展crx文件
下载Dashworks扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Dash AI is an intelligent assistant designed to seamlessly integrate with your workflow. It connects with your work apps to instantly answer work-related questions, generate content, debug code, summarize emails and projects, finds documents, and more. The Dashworks browser extension makes Dash AI accessible right from your browser's new tab page or address bar. It's like having a personal assistant that's just one-click away.
扩展基本信息
名称 | Dashworks |
ID | iecgdccnjbljdabegnogafjkkjlcpcgh |
官方URL | https://chromewebstore.google.com/detail/dashworks/iecgdccnjbljdabegnogafjkkjlcpcgh |
简介 | Dash AI is your company's knowledge assistant. |
文件大小 | 35.42 KB |
安装次数 | 2,000 |
当前版本 | 0.1.81 |
更新时间 | 2024-02-29 |
上架时间 | 2023-12-14 |
评分 | 5.00/5 共4次评分 |
开发者 | https://dashworks.ai |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://www.dashworks.ai/legal/privacy-policy |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Dashworks", "version": "0.1.81", "description": "Dash AI is your company's knowledge assistant.", "omnibox": { "keyword": "dash" }, "icons": { "16": "assets\/logo.png", "48": "assets\/logo.png", "128": "assets\/logo.png" }, "chrome_url_overrides": { "newtab": "index.html" }, "permissions": [ "activeTab", "scripting", "storage", "cookies", "declarativeNetRequestWithHostAccess" ], "content_security_policy": { "script_src": "'self'", "object_src": "'self'" }, "action": { "default_icon": "assets\/logo.png", "default_title": "Search Dashworks" }, "background": { "service_worker": "background.js" }, "host_permissions": [ "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "all_frames": true, "js": [ "dashworks.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/logo.png" ], "matches": [ "*:\/\/*\/*" ] } ] } |