Article Summarizer

This is an article summarizer and paraphraser tool. It will help you in the process of digesting news you're reading on the web.…

Article Summarizer란 무엇입니까?

Article Summarizer은(는) FWMBA에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is an article summarizer and paraphraser tool. It will help you in the process of digesting news you're reading on the web.…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This is an article summarizer and paraphraser tool. 

It will help you in the process of digesting news you're reading on the web.
And it will help you summarizing them up in a few key bullet points which you can use to speed up your editorial workflow. 

How does it work?

Step 1: Install the Chrome Extension
Step 2: To to OpenAI to activate your API key: 
https://openai.com/api/
Step 3: Go to your profile and grab your API key: 
https://beta.openai.com/account/api-keys
Step 4: Copy your API key in the Chrome Extension
Step 5: Right Click on any article you are reading and click on "Article Summarizer" 

You will see a summary popping up on the top right side of the screen, which will help you as you read the news or write new articles. 

That's it!                    

확장 프로그램 기본 정보

이름 Article Summarizer Article Summarizer
ID egeenigpoloplpaenimdkbafldcddkbi
공식 URL https://chromewebstore.google.com/detail/article-summarizer/egeenigpoloplpaenimdkbafldcddkbi
설명 This is an article summarizer and paraphraser tool. It will help you in the process of digesting news you're reading on the web.…
파일 크기 48.79 KB
설치 횟수 74
현재 버전 1.0
최근 업데이트 2022-12-25
출시 날짜 2022-12-24
평점 5.00/5 총 1 개의 평점
개발자 FWMBA
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Article Summarizer",
    "version": "1.0",
    "description": "",
    "icons": {
        "48": "icons\/icon-48.png"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "main.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "action": {
        "default_title": "Article Summarizer",
        "default_icon": "icons\/icon-48.png",
        "default_popup": "popup\/content.html"
    }
}