GPT Workspace

Run GPT in Google Workspace

GPT Workspaceคืออะไร?

GPT Workspace เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://gpt.space และคุณลักษณะหลักของมันคือ "Run GPT in Google Workspace"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        GPT for Google Sheets™ Docs™ and Slides™ is an AI assistant for the Google Workspace

✓ No sign-up required. ✓ Free with premium features. ✓ No API key required.

It is built on top OpenAI GPT-4 and Bard™ models and can be used for all sorts of tasks on text and data analysis: writing, editing, extracting, cleaning, translating, summarising, outlining, explaining, etc.

● FEATURES 

● For Sheets™ : 

Create, complete and analyse a range : select your range, enter a prompt and let AI automagically do the rest

These can be useful for : 
- Writing whole paragraphs or procedures.
- Cleaning up lists of names, addresses, emails or companies, dates, currency amounts, phone numbers.
- Classifying lists of reviews with sentiment analysis or feature categorization.
- Summarising reviews.
- Writing responses to online comments.
- Trying different versions of a prompt quickly.
- Working on ad copy (PPC, Facebook ads).
- Working on SEO metadata (titles, descriptions).
- Working on landing page copy.
- Managing and cleaning product catalogs for e-commerce stores (Shopify / Amazon).
- Changing the case of your cells text: upper / lower / capitalize / toggle case.
- Split content of cells across, given any separator to multiple columns. 
- Translate text.

● For Docs™ :

- Outlining a piece of content.
- Expanding a piece of content.
- Writing emails or blogs.
- Summarising notes.
- Translating content.
- Changing the style of content.

● For Slides™ :

-  Generate an entire presentation with images and animations in a couple of seconds, enter your prompt the number of pages and see it create everything for you. 
-  Generate slide content.
-  Insert AI generated images into your slides.

● For Gmail™ : 
- Auto reply with email after adding specific context and desired tone

● SUPPORT

Need a helping hand? Have a look at our extensive guides. 
Documentation link: https://gpt.space/support

● QUICK TUTORIAL

1️⃣ Open a Google Sheets™ or Docs™ or Slides™.
2️⃣ Open the GPT Workspace extension (don’t forget to pin it as well)
3️⃣ Try out the different functions shown on the chrome extension.

Check out your youtube page https://www.youtube.com/@gpt-for-google-workspace/videos

● PRICING

GPT Sheets™ Docs™ Slides™ offers an extensive free tier and an Unlimited Premium plan starting at 9$/month only

● OUR USERS ARE

- Data analysts and data professionals who need to enhance quickly how their spreadsheets look like
- E-Commerces owner who needs to enrich their spreadsheets with data coming for other documents
- And also startups, digital marketing agencies, consultancy groups...

We target to provide the best collection of tools, helping you to perform complex data manipulation operations without any technical knowledge. 

Forget about complex formulas and time-consuming spreadsheet verifications: prompt it and let it do the job!                    

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

ชื่อ GPT Workspace GPT Workspace
ID jgocjgkdladclacgmkkiklmdcmngjcba
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gpt-workspace/jgocjgkdladclacgmkkiklmdcmngjcba
คำอธิบาย Run GPT in Google Workspace
ขนาดไฟล์ 30.92 KB
จำนวนการติดตั้ง 23,918
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2024-03-05
วันที่เผยแพร่ 2023-07-16
คะแนน 4.84/5 รวมทั้งหมด 1460 คะแนน
ผู้พัฒนา https://gpt.space
อีเมล [email protected]
ประเภทการชำระเงิน in_app
เว็บไซต์ส่วนขยาย https://gpt.space
URL หน้าช่วยเหลือ https://support.gpt.space
URL หน้านโยบายความเป็นส่วนตัว https://gpt.space/privacy-policy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GPT Workspace",
    "description": "Run GPT in Google Workspace",
    "version": "2.0",
    "permissions": [
        "activeTab",
        "sidePanel",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/docs.google.com\/document\/*"
            ],
            "run_at": "document_start",
            "js": [
                "enableCanvasAnnotations.js"
            ],
            "world": "MAIN"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": "serviceWorker.js"
    },
    "action": {
        "default_title": "GPT Workspace",
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}