GPT3 Accessible Tables

GPT3 Accessible Tables is an extension that uses OpenAI's GPT3 technology to give insights on tables rendered in web pages. The…

Τι είναι το GPT3 Accessible Tables;

Το GPT3 Accessible Tables είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον juancfortunatti, και η κύρια λειτουργία του είναι "GPT3 Accessible Tables is an extension that uses OpenAI's GPT3 technology to give insights on tables rendered in web pages. The…".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης GPT3 Accessible Tables

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

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

                        GPT3 Accessible Tables is an extension that uses OpenAI's GPT3 technology to give insights on tables rendered in web pages.

The extension requires you to register into OpenAI's website and get a API KEY, so you may use their completion's API.

GPT3 Accessible Tables then will scan the page you access (unless you disable the scan for a given page) and run the data on those tables through OpenAI's GPT3 technology. Then OpenAI's API will return some insight on the data and this extension will inject that insight adding a  element on top of the table. It will also add a "summary" tag to the  element, making those tables readables by any screen reader.                    

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

Όνομα GPT3 Accessible Tables GPT3 Accessible Tables
ID ebfppmgmfdndnjbkljogmijldhppejig
Επίσημο URL https://chromewebstore.google.com/detail/gpt3-accessible-tables/ebfppmgmfdndnjbkljogmijldhppejig
Περιγραφή GPT3 Accessible Tables is an extension that uses OpenAI's GPT3 technology to give insights on tables rendered in web pages. The…
Μέγεθος Αρχείου 82.69 KB
Αριθμός Εγκαταστάσεων 38
Τρέχουσα Έκδοση 0.0.4
Τελευταία Ενημέρωση 2023-01-24
Ημερομηνία Δημοσίευσης 2023-01-11
Προγραμματιστής juancfortunatti
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GPT3 Accessible Tables",
    "short_name": "GPT3 Accessible Tables",
    "description": "",
    "version": "0.0.4",
    "icons": {
        "16": "favicon.ico",
        "48": "logo192.png",
        "128": "logo512.png"
    },
    "author": "Leniolabs LLC_",
    "action": {
        "default_popup": "index.html",
        "default_title": "GPT3 Accessible Tables"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "service-worker.iife.js"
    }
}