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ファイルをダウンロード

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
Eメール [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"
        }
    ]
}