GPT Workspace

Run GPT in Google Workspace

Hvad er GPT Workspace?

GPT Workspace er en Chrome-udvidelse udviklet af https://gpt.space, og dens hovedfunktion er "Run GPT in Google Workspace".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download GPT Workspace-udvidelses-CRX-fil

Download GPT Workspace-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn GPT Workspace GPT Workspace
ID jgocjgkdladclacgmkkiklmdcmngjcba
Officiel URL https://chromewebstore.google.com/detail/gpt-workspace/jgocjgkdladclacgmkkiklmdcmngjcba
Beskrivelse Run GPT in Google Workspace
Filstørrelse 30.92 KB
Antal Installationer 23,918
Nuværende Version 2.0
Senest Opdateret 2024-03-05
Udgivelsesdato 2023-07-16
Bedømmelse 4.84/5 Samlet 1460 Bedømmelser
Udvikler https://gpt.space
E-mail [email protected]
Betalingsmetode in_app
Udvidelseswebsted https://gpt.space
Hjælpeside-URL https://support.gpt.space
URL til Fortrolighedspolitik Side https://gpt.space/privacy-policy
Understøttede Sprog 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"
    }
}