ReaderGPT: ChatGPT based Web Page Summariser

Generates summary of any readable web page using ChatGPT with just a single click.

ReaderGPT: ChatGPT based Web Page Summariser란 무엇입니까?

ReaderGPT: ChatGPT based Web Page Summariser은(는) Nikhil Jindal에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generates summary of any readable web page using ChatGPT with just a single click."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

ReaderGPT: ChatGPT based Web Page Summariser 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Are you constantly bogged down by long articles and ever growing read later list? Do you wish you had a way to quickly grasp the summary. Look no further than the ReaderGPT, a ChatGPT powered Extension!

The extension offers:
1. Curate a list of prompt and generate content based on any of your prompt.
2. Use OpenAI API Key or ChatGPT login.
3. Some example prompts:
  - Summarise the following article in 3 concise bullet points.
  - Summarise the following article in 50 words.
  - Translate the following text to Spanish.
  - Simplify the following text for a five years old.
  - Write a caption based on the following text.

This extension uses parses the readable content from the page and pass it along to the ChatGPT along with the prompt to generate a summary that captures the most important points. 

With the ChatGPT Summary Generator Chrome Extension, you'll save time, stay informed, and never have to wade through lengthy content again. Try it out today and see just how much more efficient your reading and research can be!                    

확장 프로그램 기본 정보

이름 ReaderGPT: ChatGPT based Web Page Summariser ReaderGPT: ChatGPT based Web Page Summariser
ID ohgodjgnfedgikkgcjdkomkadbfedcjd
공식 URL https://chromewebstore.google.com/detail/readergpt-chatgpt-based-w/ohgodjgnfedgikkgcjdkomkadbfedcjd
설명 Generates summary of any readable web page using ChatGPT with just a single click.
파일 크기 244 KB
설치 횟수 79,324
현재 버전 0.101
최근 업데이트 2023-12-04
출시 날짜 2022-12-30
평점 3.66/5 총 76 개의 평점
개발자 Nikhil Jindal
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://twitter.com/jindal__
개인정보 보호 정책 페이지 URL https://reader-gpt.github.io/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ReaderGPT: ChatGPT based Web Page Summariser",
    "description": "Generates summary of any readable web page using ChatGPT with just a single click.",
    "version": "0.101",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "content_page_inject.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/chatgpt.svg",
                "images\/repeat.svg",
                "images\/copy.svg",
                "images\/trash.svg",
                "images\/cross.svg",
                "content.css",
                "content_page_inject.css",
                "options.html",
                "popup.html",
                "options.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            }
        }
    }
}