PowerToys for OpenAI ™

Productivity tools for OpenAI API's

Τι είναι το PowerToys for OpenAI ™;

Το PowerToys for OpenAI ™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον I-Technology.NET, και η κύρια λειτουργία του είναι "Productivity tools for OpenAI API's".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης PowerToys for OpenAI ™

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

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

                        PowerToys for OpenAI ™ provides ChatGPT functionality through the official OpenAI™ API

Is intended for power users in the office

* Search Companion is integrated with search engine results
* Conversation Manager is a full chat interface with history management
* Profile manager lets you fine tune the model's response type
* See token count
* See conversation pricing
* Copy results to clipboard
* Markdown rendering support
* Speech recognition support
* ... and more to come ;-)

It's optimized for speed, by running locally in your browser
(no server costs)

The use of this extension will require having your own API key, which can be directly obtained from OpenAI by registering and visiting their developer dashboard.

Manage your API keys by visiting:
https://platform.openai.com/account/api-keys

Pricing is around $0.002 per 750 words, or $1 for the equivalent content of a book of 1000 pages (for the gpt-3.5-turbo model)

-----------
Stay tuned:
https://twitter.com/itechnologynet                    

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

Όνομα PowerToys for OpenAI ™ PowerToys for OpenAI ™
ID haijiigmikhgoflpocajpfldmjcfbdpa
Επίσημο URL https://chromewebstore.google.com/detail/powertoys-for-openai/haijiigmikhgoflpocajpfldmjcfbdpa
Περιγραφή Productivity tools for OpenAI API's
Μέγεθος Αρχείου 1.42 MB
Αριθμός Εγκαταστάσεων 404
Τρέχουσα Έκδοση 0.2.5
Τελευταία Ενημέρωση 2023-05-11
Ημερομηνία Δημοσίευσης 2023-03-14
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής I-Technology.NET
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/robert-hoffmann/PowerToys4OpenAI
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/robert-hoffmann/PowerToys4OpenAI/issues
Υποστηριζόμενες Γλώσσες de,en,fr,tr,es,pt-PT,ru,hi,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_name__",
    "short_name": "__MSG_shortName__",
    "description": "__MSG_description__",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon-16x16.png",
        "48": "icons\/icon-48x48.png",
        "128": "icons\/icon-128x128.png"
    },
    "permissions": [
        "storage",
        "notifications"
    ],
    "action": {
        "default_title": "__MSG_name__"
    },
    "options_ui": {
        "page": "www\/index.html#\/index\/settings\/search",
        "open_in_tab": true
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "assets\/content.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "version": "0.2.5"
}