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
电子邮箱 [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"
        }
    ]
}