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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple tool to give you coding hints but never the answer. Highlight the code and press Ctrl + Shift + 1."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

OpenAI Study Buddy 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    }
}