AI Squared Extension

AI Squared extension built using the airjs SDK

Τι είναι το AI Squared Extension;

Το AI Squared Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://squared.ai, και η κύρια λειτουργία του είναι "AI Squared extension built using the airjs SDK".

Στιγμιότυπα Επέκτασης

Λήψη αρχείου CRX της επέκτασης AI Squared Extension

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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"
        ]
    }
}