Studied AI

Online education assistance tool. Answers at your finger tips. Instantly.

Studied AIคืออะไร?

Studied AI เป็นส่วนขยายของ Chrome ที่พัฒนาโดย studiedai และคุณลักษณะหลักของมันคือ "Online education assistance tool. Answers at your finger tips. Instantly."

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

screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Studied AI ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Online education assistance tool. Answers at your finger tips. Instantly.

StudiedAI accelerates your workload significantly. Integrates directly into the top online educational platforms such as Canvas, Blackboard, and Moodle. Utilizes AI technology to answer any question.

Always Improving
Our AI model improves with every question answered. The more you use StudiedAI the better it gets.

Private
Platforms detect when you leave the tab. With StudiedAI you'll never have to leave the tab again!

Any Question, Anywhere
On a site that's not supported? With our popup chat ask StudiedAI any question.

Direct Integration
Embeds directly into Canvas, Moodle, & Blackboard. More integrations soon.

Looking for support?
Send an email to [email protected]                    

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

ชื่อ Studied AI Studied AI
ID hccbmhffbioeohofjlmppbicgppcmgde
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/studied-ai/hccbmhffbioeohofjlmppbicgppcmgde
คำอธิบาย Online education assistance tool. Answers at your finger tips. Instantly.
ขนาดไฟล์ 84.24 KB
จำนวนการติดตั้ง 1,436
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2023-02-28
วันที่เผยแพร่ 2023-02-23
คะแนน 1.50/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา studiedai
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://studied.ai
URL หน้านโยบายความเป็นส่วนตัว https://studied.ai/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Studied AI",
    "description": "Online education assistance tool. Answers at your finger tips. Instantly.",
    "version": "1.0.1",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_title": "Open StudiedAI"
    },
    "background": {
        "service_worker": ".\/static\/js\/background.js"
    },
    "icons": {
        "16": "logoTransparent.png",
        "48": "logoTransparent.png",
        "128": "logoTransparent.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "tabs"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "resources\/popup.ts"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/static\/js\/content.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ]
}