Socrates

Question Template Chrome Extension for asking AI questions.

Socrates là gì?

Socrates là một tiện ích mở rộng Chrome được phát triển bởi Gabriel Lopez, và tính năng chính của nó là "Question Template Chrome Extension for asking AI questions.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Socrates

Tải xuống các tệp mở rộng Socrates dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Socrates Socrates
ID johoeiinimiigblhkabfhhighlacbkfc
URL Chính Thức https://chromewebstore.google.com/detail/socrates/johoeiinimiigblhkabfhhighlacbkfc
Mô tả Question Template Chrome Extension for asking AI questions.
Kích Thước Tệp 204 KB
Số Lần Cài Đặt 89
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2023-02-01
Ngày Phát Hành 2023-01-18
Nhà Phát Triển Gabriel Lopez
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://socrates-privacy-policy-online.s3-website-us-west-1.amazonaws.com/
URL Trang Trợ Giúp http://socrates-privacy-policy-online.s3-website-us-west-1.amazonaws.com/
URL Trang Chính Sách Bảo Mật http://socrates-privacy-policy-online.s3-website-us-west-1.amazonaws.com
Ngôn Ngữ Được Hỗ Trợ 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": []
        }
    ]
}