jent.ly

The Jent.ly Summarizer seamlessly provides a highlighted summary of your web content to save your time and attention.

jent.ly란 무엇입니까?

jent.ly은(는) http://jent.ly에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The Jent.ly Summarizer seamlessly provides a highlighted summary of your web content to save your time and attention."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

jent.ly 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Features:
 • Highlights a summary of online content
 • "Add Domain" to automatically summarize all articles from that website
 • Manage the list of domains enabled in the summarizer
 • Customize your own highlighting color

We're always improving our summarizer, so please let us know how we're doing by giving us feedback from within the extension menu!

Thanks for supporting us :)

By downloading the extension above, you agree to our Terms of Service available at: https://jent.ly/termsofservice

*************

Email: [email protected]
Website: https://jent.ly
Facebook: https://www.facebook.com/jentlysummarizer/

*************                    

확장 프로그램 기본 정보

이름 jent.ly jent.ly
ID ljpcoibfhggflcmmlbpbcmdkmdnaafeo
공식 URL https://chrome.google.com/webstore/detail/jently/ljpcoibfhggflcmmlbpbcmdkmdnaafeo
설명 The Jent.ly Summarizer seamlessly provides a highlighted summary of your web content to save your time and attention.
파일 크기 813 KB
설치 횟수 246
현재 버전 1.1.1
최근 업데이트 2020-03-19
출시 날짜 2020-03-17
평점 4.71/5 총 14 개의 평점
개발자 http://jent.ly
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://jent.ly
도움말 페이지 URL https://github.com/jent-ly/summarizer/issues
개인정보 보호 정책 페이지 URL https://jent.ly/termsofservice
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "jent.ly",
    "version": "1.1.1",
    "manifest_version": 2,
    "description": "The Jent.ly Summarizer seamlessly provides a highlighted summary of your web content to save your time and attention.",
    "icons": {
        "16": "icons\/jent-icon-128.png",
        "48": "icons\/jent-icon-128.png",
        "128": "icons\/jent-icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "bg\/performHighlighting.html",
        "persistent": false
    },
    "page_action": {
        "default_icon": "icons\/jent-icon-128.png",
        "default_title": "page action demo",
        "default_popup": "index.html"
    },
    "content_security_policy": "script-src 'self' 'sha256-5As4+3YpY62+l38PsxCEkjB1R4YtyktBtRScTJ3fyLU='; object-src 'self'",
    "permissions": [
        "activeTab",
        "https:\/\/*\/*",
        "clipboardRead",
        "clipboardWrite",
        "contextMenus",
        "storage",
        "tabs",
        "identity",
        "identity.email"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/inject.css"
            ],
            "js": [
                "js\/contentScript.js"
            ]
        }
    ]
}