Sum Up Now

Automatic text summary online. Read news , articles , documents , etc but faster !

Sum Up Now란 무엇입니까?

Sum Up Now은(는) https://sumupnow.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatic text summary online. Read news , articles , documents , etc but faster !"입니다.

확장 프로그램 스크린샷

screenshot

Sum Up Now 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        SumUpNow is the ultimate web browsing tool for busy people who want to stay up-to-date with the latest news and information without spending hours reading long articles. With SumUpNow, you can instantly summarize any article, news, or web page with just a click. Our cutting-edge AI-powered technology analyzes the content and extracts the most important points, presenting you with a concise and informative summary in seconds.

But that's not all! SumUpNow also offers an audio player that lets you listen to the summary instead of reading it. This feature is perfect for multitaskers who want to catch up while cooking, working, or anything else.

In addition, SumUpNow supports translation into multiple languages, so you can read or listen to the summary in your preferred language. Our app is also accessible for people with visual impairments or other disabilities, as the audio player provides an alternative way to consume information.

Say goodbye to information overload and hello to a smarter, more efficient way of browsing the web. Try SumUpNow today and start summarizing any article instantly!                    

확장 프로그램 기본 정보

이름 Sum Up Now Sum Up Now
ID cnnnhgifphepkhhdamneccmiolehckbg
공식 URL https://chromewebstore.google.com/detail/sum-up-now/cnnnhgifphepkhhdamneccmiolehckbg
설명 Automatic text summary online. Read news , articles , documents , etc but faster !
파일 크기 1.24 MB
설치 횟수 13
현재 버전 0.1.1
최근 업데이트 2023-04-14
출시 날짜 2023-04-07
개발자 https://sumupnow.com
이메일 [email protected]
결제 유형 in_app
개인정보 보호 정책 페이지 URL https://pixel-perfect.dev/privacy-policy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Sum Up Now",
    "description": "Automatic text summary online. Read news , articles , documents , etc but faster !",
    "version": "0.1.1",
    "action": {
        "default_icon": "icons\/icon.png"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "ElementPicker.js",
                "ExtPay.js",
                "content.js",
                "howler.js",
                "Readability.js"
            ],
            "css": [
                "highlight.css"
            ]
        },
        {
            "matches": [
                "https:\/\/extensionpay.com\/*"
            ],
            "js": [
                "ExtPay.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "show_dialog": {
            "suggested_key": {
                "default": "Ctrl+Shift+M",
                "mac": "Command+Shift+M"
            },
            "description": "Show dialog"
        },
        "highlight": {
            "suggested_key": {
                "default": "Ctrl+Shift+B",
                "mac": "Command+Shift+B"
            },
            "description": "Enable\/disable highlight text selection"
        }
    },
    "permissions": [
        "background",
        "storage",
        "contextMenus"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';",
        "sandbox": "sandbox allow-scripts; default-src *; media-src data:;"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}