GPT Workspace

Run GPT in Google Workspace

Wat is GPT Workspace?

GPT Workspace is een Chrome-extensie ontwikkeld door https://gpt.space, en de belangrijkste functie is "Run GPT in Google Workspace".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie GPT Workspace

Download GPT Workspace-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam GPT Workspace GPT Workspace
ID jgocjgkdladclacgmkkiklmdcmngjcba
Officiële URL https://chromewebstore.google.com/detail/gpt-workspace/jgocjgkdladclacgmkkiklmdcmngjcba
Beschrijving Run GPT in Google Workspace
Bestandsgrootte 30.92 KB
Aantal Installaties 23,918
Huidige Versie 2.0
Laatst Bijgewerkt 2024-03-05
Publicatiedatum 2023-07-16
Beoordeling 4.84/5 Totaal 1460 Beoordelingen
Ontwikkelaar https://gpt.space
E-mail [email protected]
Betalingswijze in_app
Extensiewebsite https://gpt.space
Help Pagina-URL https://support.gpt.space
URL van de Privacybeleid Pagina https://gpt.space/privacy-policy
Ondersteunde Talen 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"
    }
}