AI Squared Extension

AI Squared extension built using the airjs SDK

AI Squared Extension क्या है?

AI Squared Extension https://squared.ai द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "AI Squared extension built using the airjs SDK"।

एक्सटेंशन स्क्रीनशॉट्स

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में AI Squared Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        ]
    }
}