TLDR This - Free automatic text summary tool
Automatically summarize any article, text, document, webpage or essay in a click.
TLDR This - Free automatic text summary tool란 무엇입니까?
TLDR This - Free automatic text summary tool은(는) TLDR This에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically summarize any article, text, document, webpage or essay in a click."입니다.
확장 프로그램 스크린샷
TLDR This - Free automatic text summary tool 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Hi 👋 TLDR This is a chrome extension (+ web app) that can take a painfully long piece of text and sum it up into five key bullet points using the power of NLP. There's so much content out there but too little time to read. So many times, it happens that there's a long article that we're interested in, but we don't really feel like scouring through it to extract relevant information from it. TLDR This is a simple tool that can come in handy at that time by helping you spend less time reading counterproductive stuff and more on doing valuable work. Steps to get cracking - Just click the "TL;DR" button in Chrome's toolbar on a webpage which you'd like summarized and within a few seconds you'll get the <5 sentence summary right there.
확장 프로그램 기본 정보
이름 | TLDR This - Free automatic text summary tool |
ID | jjmnbidkmmabkalampbilajnheeokpoj |
공식 URL | https://chromewebstore.google.com/detail/tldr-this-free-automatic/jjmnbidkmmabkalampbilajnheeokpoj |
설명 | Automatically summarize any article, text, document, webpage or essay in a click. |
파일 크기 | 1.34 MB |
설치 횟수 | 140,821 |
현재 버전 | 2.0.5 |
최근 업데이트 | 2023-11-08 |
출시 날짜 | 2020-03-16 |
평점 | 3.76/5 총 75 개의 평점 |
개발자 | TLDR This |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://tldrthis.com |
도움말 페이지 URL | https://tldrthis.com/contact |
개인정보 보호 정책 페이지 URL | https://tldrthis.com/privacy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TLDR This - Free automatic text summary tool", "short_name": "TLDR This", "version": "2.0.5", "manifest_version": 2, "description": "Automatically summarize any article, text, document, webpage or essay in a click.", "homepage_url": "https:\/\/v1.tldrthis.com", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_icon": { "19": "img\/icon19.png", "38": "img\/icon38.png" }, "default_title": "Summarize this page.", "default_popup": "html\/browser_popup.html" }, "permissions": [ "storage", "activeTab", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "js\/lib\/jquery.min.js", "js\/shared.min.js", "js\/background.min.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.tldrthis.com\/*" ], "js": [ "js\/lib\/jquery.min.js", "js\/shared.min.js", "js\/installation.min.js" ] } ], "web_accessible_resources": [ "img\/*", "fonts\/*" ], "externally_connectable": { "matches": [ "*:\/\/*.tldrthis.com\/*" ] } } |