Select AI Extension

Select AI Extension

Select AI Extension란 무엇입니까?

Select AI Extension은(는) vthinkxie에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Select AI Extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Select AI Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Select AI Extension Select AI Extension
ID klfgbfdlicnnndjoiilgpchofdhcalil
공식 URL 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"
            ]
        }
    ]
}