Select AI Extension
Select AI Extension
What is Select AI Extension?
Select AI Extension is a Chrome extension developed by vthinkxie, and its main feature is "Select AI Extension".
Extension Screenshots
Download Select AI Extension Extension CRX File
Download Select AI Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | klfgbfdlicnnndjoiilgpchofdhcalil |
Official URL | https://chromewebstore.google.com/detail/select-ai-extension/klfgbfdlicnnndjoiilgpchofdhcalil |
Description | Select AI Extension |
File Size | 506 KB |
Installation Count | 38 |
Current Version | 0.0.1 |
Last Updated | 2023-03-25 |
Publish Date | 2023-03-25 |
Rating | 5.00/5 Total 2 Ratings |
Developer | vthinkxie |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |