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
官方網址 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
電子郵箱 [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"
        ]
    }
}