Airtable Hint GPT

GPT hints for Airtable formula field

Τι είναι το Airtable Hint GPT;

Το Airtable Hint GPT είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Business Automated, και η κύρια λειτουργία του είναι "GPT hints for Airtable formula field".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Airtable Hint GPT

Λήψη αρχείων επέκτασης Airtable Hint GPT σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Requirements:
- Airtable account 
- OpenAI account
- License key - can be purchased via https://businessautomated.gumroad.com/l/airtable-hint

Sometimes, even those of us who are well-versed in formulas (like we are at Business Automated! 😁) struggle with creating the right Airtable formulas. Writing a new formula can be mentally taxing at times 😉. But don't worry, we're here to help!

Whether you're a newbie or an Airtable expert, this Chrome extension can speed up the process of creating formulas in Airtable. If you're just starting with Airtable formulas, this tool can help guide you in the right direction and even provide the final complete formula. For Airtable experts, having an AI robot change all variables in nested IF statements to other ones can be a huge time saver. This tool can also help rewrite formulas, such as from IF to SWITCH.

The Airtable Hint GPT Chrome extension  

Our Airtable Hint GPT extension is based on Open AI's GPT language model. This model uses deep learning techniques to generate human-like text based on a given prompt. Our extension utilizes this technology to help users create Airtable formulas more efficiently. You are able to type what you want the formula to do and see result

Type your instruction and get back formula!

You can download the extension from the link on the right . 

The source code of the extension is available publicly via my open source  Github repository. Contributions are welcomed.

Completion modes

We provide two modes of completion:
-ChatGPT based completions - which might sometimes be a bit more verbose
- Regular GPT completions - tend to be shorter, but have higher cost per token

How to test ChatGPT formula suggestions?

Clone this test base

https://airtable.com/shrrM8qIp5XtVvqgD

and try couple of ideas for formula like: 
- Create a very visible warning with stop emoji and warning message if Status field is empty. Show green check if status is OK
- How many days between Due date and Kick off
- Check if emails in Email field have correct format using REGEX_MATCH() function. Display visible warning in case emails are not correct
- If Status is Complete display Task name in capitals with excited emoji at the start


Watch full description and walkthrough in this video: 
https://youtu.be/QEPW_A93_GI                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Airtable Hint GPT Airtable Hint GPT
ID baiglioplcbfbnpnlbfjlkcfcllplkbg
Επίσημο URL https://chromewebstore.google.com/detail/airtable-hint-gpt/baiglioplcbfbnpnlbfjlkcfcllplkbg
Περιγραφή GPT hints for Airtable formula field
Μέγεθος Αρχείου 152 KB
Αριθμός Εγκαταστάσεων 153
Τρέχουσα Έκδοση 1.1.4
Τελευταία Ενημέρωση 2023-04-12
Ημερομηνία Δημοσίευσης 2023-04-09
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Business Automated
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής in_app
URL της Σελίδας Πολιτικής Απορρήτου https://www.business-automated.com/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Airtable Hint GPT",
    "version": "1.1.4",
    "description": "GPT hints for Airtable formula field",
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/airtable.com\/*"
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "css": [
                "assets\/css\/contentStyle.chunk.css"
            ]
        }
    ],
    "devtools_page": "src\/pages\/devtools\/index.html",
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "src\/pages\/extension\/index.js",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                "https:\/\/airtable.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}