summarizooor

Summarize any webpage with a single click

summarizooor란 무엇입니까?

summarizooor은(는) gtfol에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Summarize any webpage with a single click"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        🫡 summarizooor is a time-saving tool for busy people and curious minds!

This tool lets you easily generate high quality summaries in seconds so you can quickly get the key ideas, insights and alpha from any text.

(you can finally go through all the newsletters left unread in your inbox yippee!)

Using it is as easy as...
1. Highlight the text your want summarised
2. Right click on the webpage
3. Click "generate summary"

OR 

to generate a summary for the entire webpage:
1. Right click anywhere on the webpage
2. Click "generate summary" 

That's it! 🤯

Features
✨ All your summaries are also saved so you can easily access them again later.

✨ Powered by GPT3 under the hood, generated summaries are not only fast but also accurate and informative. 

✨ Plus, this extension extracts the valuable insights and actionable advice – because why else would you be reading someone's long-ass article?!

✨ Search your summaries like how you search on google!

Sounds cool? Then try it out, it's free!

What's new in 0.0.0.6
✅ Upgraded to gpt3.5-turbo! This is the same model that ChatGPT uses.
✅ Some UI improvements 

ps. if you find this extension useful, consider chucking a buck or two my way to show your support 😉

buymeacoffee.com/dahliasan                    

확장 프로그램 기본 정보

이름 summarizooor summarizooor
ID khkckpdkkddnlhfebcglejikmgmimado
공식 URL https://chromewebstore.google.com/detail/summarizooor/khkckpdkkddnlhfebcglejikmgmimado
설명 Summarize any webpage with a single click
파일 크기 498 KB
설치 횟수 30
현재 버전 0.0.0.7
최근 업데이트 2023-04-06
출시 날짜 2023-01-21
평점 5.00/5 총 1 개의 평점
개발자 gtfol
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://fxhd.notion.site/summarizooor-chrome-extension-317ba7f2f1c5443cbc99a220c5d073b0
도움말 페이지 URL https://glad-palette-028717.framer.app/
개인정보 보호 정책 페이지 URL https://fxhd.notion.site/TLDR-Summariser-Chrome-Extension-317ba7f2f1c5443cbc99a220c5d073b0
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "summarizooor",
    "description": "Summarize any webpage with a single click",
    "version": "0.0.0.7",
    "manifest_version": 3,
    "icons": {
        "48": "assets\/48.png",
        "72": "assets\/72.png",
        "96": "assets\/96.png",
        "144": "assets\/144.png"
    },
    "action": {
        "default_popup": "index.html",
        "default_title": "Summarize this!"
    },
    "background": {
        "service_worker": "background.bundle.js"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "unlimitedStorage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.bundle.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "*\/static\/*\/*",
                "fonts\/*"
            ]
        }
    ]
}