Page Summarizer Using AI

See the summary of any page in the browser sidebar via the OpenAI engine.

Τι είναι το Page Summarizer Using AI;

Το Page Summarizer Using AI είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Lynn, και η κύρια λειτουργία του είναι "See the summary of any page in the browser sidebar via the OpenAI engine.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Page Summarizer Using AI

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

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

                        This extension lets you summarize any website with an artificial intelligence engine. 

It uses the new OpenAI engine to generate the summary from the text content in any website regardless of the language. To work with this addon, please first open the options page and add your API key. To obtain the OpenAI API key, please visit this (https://platform.openai.com/account/api-keys) page. Once you enter the API key in the options page, navigate to a website where you want to generate the summary, then press the toolbar button. Wait for the extension to complete the operation and generate the summary. The result is then rendered in the browser sidebar. You can change the summary length, font color, and size via the options page. Moreover, there is also a field to add custom prompts for generating the summary. To re-generate or refresh the summary, please press the reload button at the sidebar footer section.

Note: this extension uses OpenAI API to generate the summaries. Please read this (https://mybrowseraddon.com/privacy-policy/page-summarizer-using-ai.html) page to get more info about privacy policies.

If you have a feature request or found a bug to report, please fill out the bug report form on the addon's homepage (https://mybrowseraddon.com/page-summarizer-using-ai.html).                    

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

Όνομα Page Summarizer Using AI Page Summarizer Using AI
ID llggkpfmgpjbigfkceodpcjmkfjoiigo
Επίσημο URL https://chromewebstore.google.com/detail/page-summarizer-using-ai/llggkpfmgpjbigfkceodpcjmkfjoiigo
Περιγραφή See the summary of any page in the browser sidebar via the OpenAI engine.
Μέγεθος Αρχείου 47.48 KB
Αριθμός Εγκαταστάσεων 1,051
Τρέχουσα Έκδοση 0.1.0
Τελευταία Ενημέρωση 2023-06-27
Ημερομηνία Δημοσίευσης 2023-06-26
Αξιολόγηση 1.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Lynn
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://mybrowseraddon.com/page-summarizer-using-ai.html
Διεύθυνση URL της Σελίδας Βοήθειας https://mybrowseraddon.com/page-summarizer-using-ai.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.0",
    "manifest_version": 3,
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "name": "Page Summarizer Using AI",
    "permissions": [
        "storage",
        "sidePanel",
        "scripting"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/page-summarizer-using-ai.html",
    "description": "See the summary of any page in the browser sidebar via the OpenAI engine.",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "side_panel": {
        "default_path": "data\/sidebar\/sidebar.html"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/options.html"
    },
    "action": {
        "default_title": "Page Summarizer Using AI",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}