AlgoBuddyAI

You AI Assistant for coding interviews

ما هو AlgoBuddyAI؟

AlgoBuddyAI هو إضافة Chrome تم تطويرها بواسطة AlgoBuddyAI، والميزة الرئيسية لها هي "You AI Assistant for coding interviews".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة AlgoBuddyAI

قم بتنزيل ملفات الامتداد AlgoBuddyAI بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم AlgoBuddyAI AlgoBuddyAI
ID njipmdodndhhjphmnancjbbdppgncchi
عنوان URL الرسمي https://chromewebstore.google.com/detail/algobuddyai/njipmdodndhhjphmnancjbbdppgncchi
الوصف You AI Assistant for coding interviews
حجم الملف 500 KB
عدد التثبيتات 57
النسخة الحالية 1.1.5
آخر تحديث 2023-12-23
تاريخ النشر 2023-03-03
تقييم 5.00/5 مجموع تقييمات 1
المطور AlgoBuddyAI
البريد الإلكتروني [email protected]
نوع الدفع in_app
موقع الإضافة https://algobuddyai.com
عنوان صفحة المساعدة https://algobuddyai.com/contact
عنوان صفحة سياسة الخصوصية https://algobuddyai.com/privacy.html
اللغات المدعومة 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';"
    }
}