Select AI Extension

Select AI Extension

Select AI Extensionคืออะไร?

Select AI Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vthinkxie และคุณลักษณะหลักของมันคือ "Select AI Extension"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Select AI Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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"
            ]
        }
    ]
}