AI Squared Extension

AI Squared extension built using the airjs SDK

AI Squared Extension là gì?

AI Squared Extension là một tiện ích mở rộng Chrome được phát triển bởi https://squared.ai, và tính năng chính của nó là "AI Squared extension built using the airjs SDK".

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

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

Tải xuống các tệp mở rộng AI Squared Extension 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

                        *This extension is optimized for the Chrome browser, and may not work for other browsers (for example, Edge).*

Use machine learning when, where, and how you want to in the browser!

AI Squared makes it easy to access machine learning model results in any browser-based webapp or webpage! We've pre-loaded our extension with a file that lets you query ChatGPT, and will be adding more exciting use cases in the near future.

For guides and documentation, please visit our docs site - https://docs.squared.ai

For all other information, please visit our website - https://squared.ai or contact us at [email protected]                    

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

Tên AI Squared Extension AI Squared Extension
ID bidhbaeemkapnifplpgfcbebfpcoilli
URL Chính Thức https://chromewebstore.google.com/detail/ai-squared-extension/bidhbaeemkapnifplpgfcbebfpcoilli
Mô tả AI Squared extension built using the airjs SDK
Kích Thước Tệp 2.89 MB
Số Lần Cài Đặt 104
Phiên Bản Hiện Tại 2.0.1
Cập Nhật Lần Cuối 2023-04-29
Ngày Phát Hành 2023-04-13
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://squared.ai
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://squared.ai
URL Trang Trợ Giúp https://docs.squared.ai/support/ai-squared-support
URL Trang Chính Sách Bảo Mật https://squared.ai/terms-of-service
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AI Squared Extension",
    "description": "AI Squared extension built using the airjs SDK",
    "version": "2.0.1",
    "manifest_version": 3,
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "AI2 Extension",
        "default_icon": "icon.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "identity"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "options.html",
                "icon.png",
                "logo.gif"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "oauth2": {
        "client_id": "735076489185-8pi4e5ds3pb1fluq6qqivrvhio3svbnu.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.profile",
            "https:\/\/www.googleapis.com\/auth\/userinfo.email",
            "profile",
            "email"
        ]
    }
}