AI Summarizer

ChatGPT-3.5 powered tool to summarize any website you are at

AI Summarizer là gì?

AI Summarizer là một tiện ích mở rộng Chrome được phát triển bởi xifre, và tính năng chính của nó là "ChatGPT-3.5 powered tool to summarize any website you are at".

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

screenshot

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

Tải xuống các tệp mở rộng AI Summarizer 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

                        Summarize any page you are at with the help of ChatGPT-3.5! All with a free and open source project :)

Click on the extension's icon, define how you want the summary done and start summarizing.

You can use a free demo API Key that allows several queries. If you'd like to do many more queries, please provide your own ChatGPT Key (for free), by simply clicking "Add tokens" and inserting your API Key. It's very easy to get from the openai website.

*FEATURES*

- Summarize only the selected text
If you have any selected text, the extension will work only on that fragment. Ideal if you don't need the entire page and you don't want to use too many API tokens.

- Set the summary length
You can set it in words or in characters. As of now it's not 100% accurate (it may be some words/characters off), but it'll try its best to adjust to the required length. If you want the summary in bullet points (read below), the length limiter won't work, as it requires a different query engineering that is not ready yet.

- Set keywords
You can ask the AI to focus on specific topics when summarizing. If you are reading, for example, someone's biography, you can make it focus in the political career of that someone. Simply introduce a keyword in the keywords field and press enter or click "Add".

- Summarize en bullet points
You can summarize the page in a regular text format or in bullet points.

- Use your own FREE API Key
You can click at the top side "Add tokens (free)" and then you'll be able to introduce your own API Key from chatGPT. It only requires you to set an account with openai and then you can create a free key. The key is limited but allows quite a broad number of requests.

OPEN SOURCE AND DATA PRIVACY

This project is only "semi" open source because some files could pose security concerns and allow exploits of the public API Key.

There are actually not many files hidden so the code is perfectly understandable without them.

- About privacy:
This extension DOES NOT use your data in any way.

It doesn't even have access to it. The only data it uses is your API Key, if you voluntarily decide to introduce it. And its use is only for its intended purpose, nothing else. You can actually verify by yourself everything stated here, by reading the code and by inspecting the extension's network (you'll see that the only request done is to chatGPT).

DISCLAIMER

This extension is currently in its first release so it may have unexpected bugs that still require some work on. Please, feel free to contribute to this repository if there's anything you believe it could be improved.

GITHUB REPOSITORY
https://github.com/xfontr/chat-gpt-ai-summarizer                    

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

Tên AI Summarizer AI Summarizer
ID bhpbalbjambphcgchfpdohafcbdjkgno
URL Chính Thức https://chromewebstore.google.com/detail/ai-summarizer/bhpbalbjambphcgchfpdohafcbdjkgno
Mô tả ChatGPT-3.5 powered tool to summarize any website you are at
Kích Thước Tệp 30.05 KB
Số Lần Cài Đặt 595
Phiên Bản Hiện Tại 0.0.0.1
Cập Nhật Lần Cuối 2023-04-17
Ngày Phát Hành 2023-04-16
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển xifre
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/xfontr/chat-gpt-ai-summarizer
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AI Summarizer",
    "description": "ChatGPT-3.5 powered tool to summarize any website you are at",
    "version": "0.0.0.1",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dummy.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Summarizer",
        "default_popup": "popup.html",
        "default_area": "navbar"
    },
    "icons": {
        "128": "128.png"
    },
    "env": {
        "API_KEY": "Xg0BSV5fFRszNWNYbwcGAkAROC0bybJ+beqrRUxhLSV9MCp7b3wwRxQLeHteRF5BZxpG"
    }
}