GPTx

ChatGPT-powered Chrome Extension, Elevates Browsing Experience and Productivity.

Τι είναι το GPTx;

Το GPTx είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον sarveshkapre, και η κύρια λειτουργία του είναι "ChatGPT-powered Chrome Extension, Elevates Browsing Experience and Productivity.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης GPTx

Λήψη αρχείων επέκτασης GPTx σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Introducing GPTX - the powerful Chrome Extension - that leverages ChatGPT to elevate your browsing experience and make daily tasks effortless. GPT-generated results can improve search accuracy, efficiency, user experience, creativity, accessibility, trust and credibility, and convenience.

The use of GPT-generated results alongside traditional Google results can provide several benefits. Showing both types of results can increase the accuracy and relevance of the information presented to the user, as the GPT-generated results can provide additional context and information that may not be present in the traditional results. This can also improve the efficiency of the search, allowing users to find the information they need faster.

Including GPT-generated results can also enhance the user experience by adding diversity and novelty to the search results. This can make the search process more engaging and enjoyable for the user. The GPT-generated results can also provide users with new ideas and perspectives, fostering creativity and inspiration.

Additionally, the inclusion of GPT-generated results can increase the accessibility of the search experience, as they can provide information and context that may not be easily accessible through traditional results. This can make the search experience more inclusive for users with different needs and abilities.

Showing GPT-generated results alongside traditional results can also increase trust and credibility in the information presented, as it provides users with a more comprehensive picture of the information they are seeking. Finally, the GPT-generated results can provide users with quick and easy access to additional information, increasing the convenience of the search experience.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα GPTx GPTx
ID ljmohcbobmmelbiijhpigdmmoboabjcl
Επίσημο URL https://chromewebstore.google.com/detail/gptx/ljmohcbobmmelbiijhpigdmmoboabjcl
Περιγραφή ChatGPT-powered Chrome Extension, Elevates Browsing Experience and Productivity.
Μέγεθος Αρχείου 291 KB
Αριθμός Εγκαταστάσεων 1,905
Τρέχουσα Έκδοση 1.3.0
Τελευταία Ενημέρωση 2022-12-16
Ημερομηνία Δημοσίευσης 2022-12-11
Αξιολόγηση 3.80/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής sarveshkapre
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/sarveshkapre/gptx
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/sarveshkapre/gptx/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GPTx",
    "version": "1.3.0",
    "description": "ChatGPT-powered Chrome Extension, Elevates Browsing Experience and Productivity.",
    "action": {
        "default_icon": "icon19.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "host_permissions": [
        "https:\/\/*.openai.com\/"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/search*"
            ],
            "include_globs": [
                "*.google.*\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "bootstrap.min.css",
                "github-markdown.css",
                "result-card.css"
            ]
        },
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat"
            ],
            "js": [
                "chatgpt-script.js"
            ]
        }
    ]
}