Text Explorer
Easy-to-use AI-powered tool for the optimized content reading experience by highlighting relevant information and keywords.
Text Explorer란 무엇입니까?
Text Explorer은(는) silkdata.ai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easy-to-use AI-powered tool for the optimized content reading experience by highlighting relevant information and keywords."입니다.
확장 프로그램 스크린샷
Text Explorer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Text Explorer is an easy-to-use AI-powered tool for the optimized content reading experience by highlighting relevant information and keywords. Save time on reading articles by first looking on relevant information. * NO NEED TO READ A WHOLE TEXT TO GET SOUGHT-FOR INFORMATION HOW TO USE: Simply call the extension when on a page you’d like to read and get all key points accented. Use bar in lower part of the page to switch between word/sentence mode and for custom settings. Click on the extension icon on the Chrome toolbar or on close (red X) button (available in extension icon in lower-left corner of web page). For advanced options, click on the extension icon to call the full extension GUI. Here you can - Select between keywords and key sentences - Switch on named entities (like organizations or places) pinpointing with emoji - Change highlight color - Select custom text region - Change web page language (can be 'en', 'de', 'ru' or 'auto'; helpful for misconfigured web pages) - Change the number of keywords and key sentences (as fraction of the web page size) MAIN FEATURES: - Highlight keywords and key sentences - Pinpoint named entities - Support of English, German and Russian - Other languages are planned KNOWN LIMITATIONS: - Extension does not work with telegra.ph and some of social networks - Extension look and feel may slightly change depending on the styles of the web page
확장 프로그램 기본 정보
이름 | Text Explorer |
ID | iongaopbnmbjbfgmajbcpmlhaoabkelf |
공식 URL | https://chromewebstore.google.com/detail/text-explorer/iongaopbnmbjbfgmajbcpmlhaoabkelf |
설명 | Easy-to-use AI-powered tool for the optimized content reading experience by highlighting relevant information and keywords. |
파일 크기 | 3.19 MB |
설치 횟수 | 1,187 |
현재 버전 | 1.2.0 |
최근 업데이트 | 2021-02-22 |
출시 날짜 | 2019-02-14 |
평점 | 4.33/5 총 6 개의 평점 |
개발자 | silkdata.ai |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.silkdata.ai/products/summarize-text |
개인정보 보호 정책 페이지 URL | https://www.silkdata.ai/fileadmin/pdf/privacy.pdf |
지원되는 언어 | de,en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "author": "Silk Data AI", "short_name": "__MSG_extName__", "version": "1.2.0", "description": "__MSG_extShortDescr__", "manifest_version": 2, "permissions": [ "tabs", "storage" ], "web_accessible_resources": [ "assets\/*.png" ], "browser_action": { "default_title": "TextExplorer" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "commands": { "select-text": { "suggested_key": { "default": "Alt+Q" }, "description": "__MSG_selectTextTooltip__" } }, "icons": { "16": "assets\/text_explorer_icon_16.png", "48": "assets\/text_explorer_icon_48.png", "128": "assets\/text_explorer_icon_128.png" }, "default_locale": "en" } |