Dust XP1

Productivity Assistant with access to your Tabs

Dust XP1คืออะไร?

Dust XP1 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://dust.tt และคุณลักษณะหลักของมันคือ "Productivity Assistant with access to your Tabs"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dust XP1

ดาวน์โหลดไฟล์ส่วนขยาย Dust XP1 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        XP1 is a productivity assistant (based on GPT (gpt-3.5-turbo)) with access to your browser tabs content. It is geared (prompted) towards productivity and can be used to help you with your daily tasks (such as answering emails, summarizing documents, extracting structured data from unstructured text, ...)

- Use ⌘+↑ to open the assistant (remap by visiting chrome://extensions/shortcuts).
- Use `[[` to select tabs content to include in the context of your query.
- Use ⌘+⏎ to submit your query.
- Use `/reset` to clear the conversation.

# Example usage

Reply to [[email]] based on [[knowledgebase]]
Summarize with bullet-points [[cnn]]
Extract [[linkedin]] experience as CSV
Generate a twitter thread with emoji to sell [[product]]
Generate a 5 sentence bio about [[linkedin]]
Generate a personalized email to [[linkedin]] offering to try [[xp1]]
JSON from [[email]] and [[linkedin]] of the form {name, email, job_title, feedback, date }

# Known Limitations

- Does not work with Google Sheets (work in progress)
- Model context size can be a limitation for long documents especially when using multiple tabs

# Privacy

Only the text content of the tabs you select and submit are sent through our servers to OpenAI's API. Cookies, tab activity, or non-submitted tab content are never sent.

# Support

- Email [email protected]
- #xp1 on https://discord.gg/AW8X8dfp                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Dust XP1 Dust XP1
ID okgjeakekjeppjocmfaeeeaianominge
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dust-xp1/okgjeakekjeppjocmfaeeeaianominge
คำอธิบาย Productivity Assistant with access to your Tabs
ขนาดไฟล์ 132 KB
จำนวนการติดตั้ง 1,173
เวอร์ชันปัจจุบัน 0.3.0
อัปเดตครั้งล่าสุด 2023-03-08
วันที่เผยแพร่ 2022-12-18
คะแนน 4.40/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา https://dust.tt
อีเมล [email protected]
ประเภทการชำระเงิน in_app
เว็บไซต์ส่วนขยาย https://dust.tt/xp1
URL หน้าช่วยเหลือ https://discord.com/invite/8NJR3zQU5X
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.3.0",
    "name": "Dust XP1",
    "description": "Productivity Assistant with access to your Tabs",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Up",
                "mac": "Command+Up"
            }
        }
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "scripting",
        "tabs",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}