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…”。
擴展截圖
下載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 aelement 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 ID ebfppmgmfdndnjbkljogmijldhppejig 官方網址 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" } }