AlgoBuddyAI

You AI Assistant for coding interviews

Cos'è AlgoBuddyAI?

AlgoBuddyAI è un'estensione di Chrome sviluppata da AlgoBuddyAI, e la sua funzione principale è "You AI Assistant for coding interviews".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione AlgoBuddyAI

Scarica i file di estensione AlgoBuddyAI in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        AlgoBuddyAI is a tool to help you solve coding problems by giving you an LLM at your fingertips. 

If you are working on a coding problem, for fun, or for interview prep, simply click on the button to get an answer to any of your questions.                    

Informazioni di Base sull'Estensione

Nome AlgoBuddyAI AlgoBuddyAI
ID njipmdodndhhjphmnancjbbdppgncchi
URL Ufficiale https://chromewebstore.google.com/detail/algobuddyai/njipmdodndhhjphmnancjbbdppgncchi
Descrizione You AI Assistant for coding interviews
Dimensione del File 500 KB
Conteggio Installazioni 57
Versione Corrente 1.1.5
Ultimo Aggiornamento 2023-12-23
Data di Pubblicazione 2023-03-03
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore AlgoBuddyAI
Email [email protected]
Tipo di Pagamento in_app
Sito Web dell'Estensione https://algobuddyai.com
URL della Pagina di Aiuto https://algobuddyai.com/contact
URL della Pagina della Politica sulla Privacy https://algobuddyai.com/privacy.html
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AlgoBuddyAI",
    "description": "You AI Assistant for coding interviews",
    "version": "1.1.5",
    "manifest_version": 3,
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhPsXU+8440fJUNMurXTDCbx0+BrJKSgn+5yt1FvaC6XMla5+60wwuRoH9Il18tcxsdK7AoVIncJ2dDngx03rBcpnOXLmPWz8g8E62yUAIXmLFe2ZI5VF71YVUzX+EqkLtzTXv62s73kzCcdoluU2lZW5CLJ\/tgzvsEJz2qoACu+RRPa9Pck8wxo1\/L9FXnDXi1IfxBDVK1wgHHwaAJ4AD21iTNtwBNF440hqGzydJSfVyOgoHNMP0O7Ll3LZKshjcXaDDb7eYKcMmJHe3e745r5UqRaadOLSD6H2l7p31OfzHwRl92Q0LYf4qRMwkt2MaAXSuiMyUnZJxwR9lqpkdQIDAQAB",
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "host_permissions": [
        "https:\/\/*.openai.com\/"
    ],
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/*.openai.com\/"
    ],
    "background": {
        "service_worker": "background\/index.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.coderpad.io\/*",
                "https:\/\/*.leetcode.com\/problems*",
                "https:\/\/www.hackerrank.com\/*",
                "https:\/\/algobuddyai.com\/*"
            ],
            "js": [
                "content-script\/index.js"
            ],
            "css": [
                "github-markdown.css",
                "styles.css"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';",
        "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
    }
}