tldr.chrome

Summarize any text

tldr.chrome란 무엇입니까?

tldr.chrome은(는) ignatif에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Summarize any text"입니다.

확장 프로그램 스크린샷

screenshot

tldr.chrome 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension uses DistilBERT model trained on CNN news dataset to produce text summaries

1. Select text
2. Double hit "Enter"
3. Get text summary                    

확장 프로그램 기본 정보

이름 tldr.chrome tldr.chrome
ID khkpnmmnkenbelkljphmpbjgbmobgonn
공식 URL https://chromewebstore.google.com/detail/tldrchrome/khkpnmmnkenbelkljphmpbjgbmobgonn
설명 Summarize any text
파일 크기 332 KB
설치 횟수 140
현재 버전 0.2
최근 업데이트 2021-10-15
출시 날짜 2021-08-25
평점 3.00/5 총 1 개의 평점
개발자 ignatif
이메일 [email protected]
결제 유형 in_app
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "tldr.chrome",
    "description": "Summarize any text",
    "version": "0.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "256": "logo\/logo.png"
    },
    "permissions": [
        "identity",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "tldr.css"
            ],
            "js": [
                "tldr.js"
            ]
        },
        {
            "matches": [
                "http:\/\/localhost:4000\/tldr\/payment\/success",
                "https:\/\/www.ignatif.me\/tldr\/payment\/success"
            ],
            "js": [
                "payment_success.js"
            ]
        }
    ],
    "oauth2": {
        "client_id": "50503379753-ppcd44vk846li1je5cpk096ul9k9nau7.apps.googleusercontent.com",
        "scopes": [
            "openid"
        ]
    },
    "action": {
        "default_icon": "logo\/logo.png",
        "default_title": "tl;dr chrome",
        "default_popup": ".\/build\/index.html"
    },
    "host_permissions": [
        "https:\/\/ignatif.me\/*"
    ]
}