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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}