AlgoBuddyAI

You AI Assistant for coding interviews

Qu'est-ce que AlgoBuddyAI ?

AlgoBuddyAI est une extension Chrome développée par AlgoBuddyAI, et sa fonction principale est "You AI Assistant for coding interviews".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension AlgoBuddyAI

Téléchargez les fichiers d'extension AlgoBuddyAI au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom AlgoBuddyAI AlgoBuddyAI
ID njipmdodndhhjphmnancjbbdppgncchi
URL Officiel https://chromewebstore.google.com/detail/algobuddyai/njipmdodndhhjphmnancjbbdppgncchi
Description You AI Assistant for coding interviews
Taille du Fichier 500 KB
Nombre d'Installations 57
Version Actuelle 1.1.5
Dernière Mise à Jour 2023-12-23
Date de Publication 2023-03-03
Évaluation 5.00/5 Total 1 Évaluations
Développeur AlgoBuddyAI
Email [email protected]
Type de Paiement in_app
Site Web de l'Extension https://algobuddyai.com
URL de la Page d'Aide https://algobuddyai.com/contact
URL de la Page de Politique de Confidentialité https://algobuddyai.com/privacy.html
Langues Prises en Charge 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';"
    }
}