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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        *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
이메일 [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"
        ]
    }
}