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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย FWMBA และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Article Summarizer

ดาวน์โหลดไฟล์ส่วนขยาย Article Summarizer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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.
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"
    }
}