Select AI Extension
Select AI Extension
什麼是Select AI Extension?
Select AI Extension是由vthinkxie開發的Chrome擴展程式,該擴展的主要功能是“Select AI Extension”。
擴展截圖
下載Select AI Extension擴展crx文件
下載Select AI Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Select AI is a Chrome extension that helps you manage and use GPT assistants when selecting text. After holding down the shortcut key and selecting the text, the GPT assistant will appear, select the GPT assistant you want to use and the assistant will answer the questions based on the selected text.
擴展基本資訊
名稱 | |
ID | klfgbfdlicnnndjoiilgpchofdhcalil |
官方網址 | https://chromewebstore.google.com/detail/select-ai-extension/klfgbfdlicnnndjoiilgpchofdhcalil |
簡介 | Select AI Extension |
檔案大小 | 506 KB |
安裝次數 | 38 |
目前版本 | 0.0.1 |
更新時間 | 2023-03-25 |
上架時間 | 2023-03-25 |
評分 | 5.00/5 共 2 次評分 |
開發者 | vthinkxie |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Select AI Extension", "version": "0.0.1", "icons": { "16": "assets\/icons\/favicon-16x16.png", "32": "assets\/icons\/favicon-32x32.png", "48": "assets\/icons\/favicon-48x48.png", "128": "assets\/icons\/favicon-128x128.png" }, "description": "Select AI Extension", "homepage_url": "https:\/\/github.com\/selectai", "short_name": "Select AI", "permissions": [ "storage" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "author": "insightloom", "minimum_chrome_version": "88", "action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/icons\/favicon-16x16.png", "32": "assets\/icons\/favicon-32x32.png", "48": "assets\/icons\/favicon-48x48.png", "128": "assets\/icons\/favicon-128x128.png" }, "default_title": "Select AI", "chrome_style": false }, "options_page": "options.html", "options_ui": { "page": "options.html", "open_in_tab": true }, "background": { "service_worker": "js\/bgServiceWorker.bundle.js", "type": "module" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/contentScript.bundle.js" ] } ] } |