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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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": [ "*:\/\/*\/*" ] } ] } |