OpenAI Study Buddy

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

OpenAI Study Buddy क्या है?

OpenAI Study Buddy newlandcreatives द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple tool to give you coding hints but never the answer. Highlight the code and press Ctrl + Shift + 1."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में OpenAI Study Buddy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        ⚡️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!                    

एक्सटेंशन की मूल जानकारी

नाम OpenAI Study Buddy OpenAI Study Buddy
ID ekhgdhehjdfmcbieepplbnflhijfnjjd
आधिकारिक URL https://chromewebstore.google.com/detail/openai-study-buddy/ekhgdhehjdfmcbieepplbnflhijfnjjd
विवरण A simple tool to give you coding hints but never the answer. Highlight the code and press Ctrl + Shift + 1.
फ़ाइल का आकार 1.05 MB
स्थापना संख्या 559
वर्तमान संस्करण 1.0.0.0
अंतिम अपडेट 2023-11-15
प्रकाशन तिथि 2023-03-17
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर newlandcreatives
ईमेल [email protected]
भुगतान के प्रकार in_app
गोपनीयता नीति पृष्ठ URL https://docs.google.com/document/d/1StPTjqvM_LVKq-JZdF619sBTeFtTml1IdMOWx4uMdhc/edit?usp=sharing
समर्थित भाषाएँ 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"
        }
    }
}