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
官方網址 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"
        }
    ]
}