GPT Workspace

Run GPT in Google Workspace

Apa itu GPT Workspace?

GPT Workspace adalah ekstensi Chrome yang dikembangkan oleh https://gpt.space, dan fitur utamanya adalah "Run GPT in Google Workspace".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi GPT Workspace

Unduh file ekstensi GPT Workspace dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama GPT Workspace GPT Workspace
ID jgocjgkdladclacgmkkiklmdcmngjcba
URL Resmi https://chromewebstore.google.com/detail/gpt-workspace/jgocjgkdladclacgmkkiklmdcmngjcba
Deskripsi Run GPT in Google Workspace
Ukuran File 30.92 KB
Jumlah Instalasi 23,918
Versi Saat Ini 2.0
Terakhir Diperbarui 2024-03-05
Tanggal Publikasi 2023-07-16
Penilaian 4.84/5 Total 1460 Penilaian
Pengembang https://gpt.space
Email [email protected]
Tipe Pembayaran in_app
Situs Ekstensi https://gpt.space
URL Halaman Bantuan https://support.gpt.space
URL Halaman Kebijakan Privasi https://gpt.space/privacy-policy
Bahasa yang Didukung 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"
    }
}