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文件

下載Socrates擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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": []
        }
    ]
}