Dashworks
Dash AI is your company's knowledge assistant.
What is Dashworks?
Dashworks is a Chrome extension developed by https://dashworks.ai, and its main feature is "Dash AI is your company's knowledge assistant.".
Extension Screenshots
Download Dashworks Extension CRX File
Download Dashworks extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Dashworks |
ID | iecgdccnjbljdabegnogafjkkjlcpcgh |
Official URL | https://chromewebstore.google.com/detail/dashworks/iecgdccnjbljdabegnogafjkkjlcpcgh |
Description | Dash AI is your company's knowledge assistant. |
File Size | 35.42 KB |
Installation Count | 2,000 |
Current Version | 0.1.81 |
Last Updated | 2024-02-29 |
Publish Date | 2023-12-14 |
Rating | 5.00/5 Total 4 Ratings |
Developer | https://dashworks.ai |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://www.dashworks.ai/legal/privacy-policy |
Supported Languages | 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": [ "*:\/\/*\/*" ] } ] } |