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 là gì?
GPT3 Accessible Tables là một tiện ích mở rộng Chrome được phát triển bởi juancfortunatti, và tính năng chính của nó là "GPT3 Accessible Tables is an extension that uses OpenAI's GPT3 technology to give insights on tables rendered in web pages. The…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng GPT3 Accessible Tables
Tải xuống các tệp mở rộng GPT3 Accessible Tables dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên GPT3 Accessible Tables ID ebfppmgmfdndnjbkljogmijldhppejig URL Chính Thức https://chromewebstore.google.com/detail/gpt3-accessible-tables/ebfppmgmfdndnjbkljogmijldhppejig Mô tả GPT3 Accessible Tables is an extension that uses OpenAI's GPT3 technology to give insights on tables rendered in web pages. The… Kích Thước Tệp 82.69 KB Số Lần Cài Đặt 38 Phiên Bản Hiện Tại 0.0.4 Cập Nhật Lần Cuối 2023-01-24 Ngày Phát Hành 2023-01-11 Nhà Phát Triển juancfortunatti [email protected] Loại Thanh Toán free Ngôn Ngữ Được Hỗ Trợ 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" } }