Studied AI

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

Studied AI란 무엇입니까?

Studied AI은(는) studiedai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Online education assistance tool. Answers at your finger tips. Instantly."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        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"
        }
    ]
}