AI Summarizer

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

AI Summarizer란 무엇입니까?

AI Summarizer은(는) xifre에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "ChatGPT-3.5 powered tool to summarize any website you are at"입니다.

확장 프로그램 스크린샷

screenshot

AI Summarizer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 AI Summarizer AI Summarizer
ID bhpbalbjambphcgchfpdohafcbdjkgno
공식 URL https://chromewebstore.google.com/detail/ai-summarizer/bhpbalbjambphcgchfpdohafcbdjkgno
설명 ChatGPT-3.5 powered tool to summarize any website you are at
파일 크기 30.05 KB
설치 횟수 595
현재 버전 0.0.0.1
최근 업데이트 2023-04-17
출시 날짜 2023-04-16
평점 5.00/5 총 1 개의 평점
개발자 xifre
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/xfontr/chat-gpt-ai-summarizer
지원되는 언어 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"
    }
}