Socrates

Question Template Chrome Extension for asking AI questions.

Socrates란 무엇입니까?

Socrates은(는) Gabriel Lopez에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Question Template Chrome Extension for asking AI questions."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Socrates 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension goes with the trend of AI technologies like Chat GPT. It allows you to store saved question templates to help build context to your questions. For example, a question template could be:  Give me a response in a complete sentence and explain it like I am only 10 years old ?newQuestion. A question mark followed by a variable name is what will be filled in later which in this case is a new question. So with this template, we would just have to plug in our new question and the template would already have the context to ask for a complete sentence and to explain it to you. 

Column icons created by Freepik - Flaticon                    

확장 프로그램 기본 정보

이름 Socrates Socrates
ID johoeiinimiigblhkabfhhighlacbkfc
공식 URL https://chromewebstore.google.com/detail/socrates/johoeiinimiigblhkabfhhighlacbkfc
설명 Question Template Chrome Extension for asking AI questions.
파일 크기 204 KB
설치 횟수 89
현재 버전 1.0.0
최근 업데이트 2023-02-01
출시 날짜 2023-01-18
개발자 Gabriel Lopez
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://socrates-privacy-policy-online.s3-website-us-west-1.amazonaws.com/
도움말 페이지 URL http://socrates-privacy-policy-online.s3-website-us-west-1.amazonaws.com/
개인정보 보호 정책 페이지 URL http://socrates-privacy-policy-online.s3-website-us-west-1.amazonaws.com
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Question Template Chrome Extension for asking AI questions.",
    "version": "1.0.0",
    "manifest_version": 3,
    "name": "Socrates",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "favicon-34.png"
    },
    "icons": {
        "128": "favicon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "favicon-128.png",
                "favicon-34.png"
            ],
            "matches": []
        }
    ]
}