GPT Workspace

Run GPT in Google Workspace

什么是GPT Workspace?

GPT Workspace是由https://gpt.space开发的Chrome扩展程序,该扩展的主要功能是“Run GPT in Google Workspace”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载GPT Workspace扩展crx文件

下载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"
    }
}