AI Squared Extension

AI Squared extension built using the airjs SDK

AI Squared Extensionとは何ですか?

AI Squared Extensionはhttps://squared.aiによって開発されたChromeの拡張機能で、その主な機能は「AI Squared extension built using the airjs SDK」です。

拡張機能のスクリーンショット

AI Squared Extension拡張機能のCRXファイルをダウンロード

AI Squared Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        *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]                    

拡張機能の基本情報

名前 AI Squared Extension AI Squared Extension
ID bidhbaeemkapnifplpgfcbebfpcoilli
公式URL https://chromewebstore.google.com/detail/ai-squared-extension/bidhbaeemkapnifplpgfcbebfpcoilli
説明 AI Squared extension built using the airjs SDK
ファイルサイズ 2.89 MB
インストール数 104
現在のバージョン 2.0.1
最終更新日 2023-04-29
公開日 2023-04-13
評価 5.00/5 合計 2 レビュー
開発者 https://squared.ai
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://squared.ai
ヘルプページのURL https://docs.squared.ai/support/ai-squared-support
プライバシーポリシーページのURL https://squared.ai/terms-of-service
対応言語 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"
        ]
    }
}