Socrates

Question Template Chrome Extension for asking AI questions.

ما هو Socrates؟

Socrates هو إضافة Chrome تم تطويرها بواسطة Gabriel Lopez، والميزة الرئيسية لها هي "Question Template Chrome Extension for asking AI questions.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Socrates

قم بتنزيل ملفات الامتداد Socrates بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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/
عنوان صفحة المساعدة http://socrates-privacy-policy-online.s3-website-us-west-1.amazonaws.com/
عنوان صفحة سياسة الخصوصية 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": []
        }
    ]
}