Studied AI

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

Studied AI là gì?

Studied AI là một tiện ích mở rộng Chrome được phát triển bởi studiedai, và tính năng chính của nó là "Online education assistance tool. Answers at your finger tips. Instantly.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Studied AI

Tải xuống các tệp mở rộng Studied AI dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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]                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Studied AI Studied AI
ID hccbmhffbioeohofjlmppbicgppcmgde
URL Chính Thức https://chromewebstore.google.com/detail/studied-ai/hccbmhffbioeohofjlmppbicgppcmgde
Mô tả Online education assistance tool. Answers at your finger tips. Instantly.
Kích Thước Tệp 84.24 KB
Số Lần Cài Đặt 1,436
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2023-02-28
Ngày Phát Hành 2023-02-23
Đánh Giá 1.50/5 Tổng số 4 Đánh Giá
Nhà Phát Triển studiedai
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://studied.ai
URL Trang Chính Sách Bảo Mật https://studied.ai/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}