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はjuancfortunattiによって開発されたChromeの拡張機能で、その主な機能は「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

GPT3 Accessible Tables拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}