OpenAI Study Buddy

A simple tool to give you coding hints but never the answer. Highlight the code and press Ctrl + Shift + 1.

¿Qué es OpenAI Study Buddy?

OpenAI Study Buddy es una extensión de Chrome desarrollada por newlandcreatives, y su función principal es "A simple tool to give you coding hints but never the answer. Highlight the code and press Ctrl + Shift + 1.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión OpenAI Study Buddy

Descarga archivos de extensión OpenAI Study Buddy en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        ⚡️As of November 8, 2023, we are happy to once again offer free trials!⚡️

OpenAI Study Buddy is a simple and convenient tool to help you in your coding journey. We use modern AI technology to help guide you towards the right answer without giving it away to ensure AI is assisting your learning, not replacing it. We firmly believe in the power of AI assisted education to improve education outcomes for millions across the globe.

Study Buddy is simple to use! Simply highlight your your function, snippet, or problem, hit Ctrl + Shift + 1, and you'll see an alert with your hint at the top of your browser.

At $4.99/month, Study Buddy is most affordable way to boost your learning!                    

Información Básica de la Extensión

Nombre OpenAI Study Buddy OpenAI Study Buddy
ID ekhgdhehjdfmcbieepplbnflhijfnjjd
URL Oficial https://chromewebstore.google.com/detail/openai-study-buddy/ekhgdhehjdfmcbieepplbnflhijfnjjd
Descripción A simple tool to give you coding hints but never the answer. Highlight the code and press Ctrl + Shift + 1.
Tamaño del Archivo 1.05 MB
Cantidad de Instalaciones 559
Versión Actual 1.0.0.0
Última Actualización 2023-11-15
Fecha de Publicación 2023-03-17
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador newlandcreatives
Correo electrónico [email protected]
Tipo de Pago in_app
URL de la Página de Política de Privacidad https://docs.google.com/document/d/1StPTjqvM_LVKq-JZdF619sBTeFtTml1IdMOWx4uMdhc/edit?usp=sharing
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "OpenAI Study Buddy",
    "short_name": "oaisbv0",
    "version": "1.0.0.0",
    "author": "Erik Newland",
    "description": "A simple tool to give you coding hints but never the answer. Highlight the code and press Ctrl + Shift + 1.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/extensionpay.com\/*"
            ],
            "js": [
                "ExtPay.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*\/",
                "https:\/\/*\/"
            ],
            "js": [
                "ExtPay.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "scripting",
        "activeTab"
    ],
    "commands": {
        "inject-script": {
            "suggested_key": "Ctrl+Shift+1",
            "description": "Inject a script on the page"
        }
    }
}