Explain to Chrome
Article shortener using ExplainToMe
Explain to Chrome란 무엇입니까?
Explain to Chrome은(는) oelmekki에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Article shortener using ExplainToMe"입니다.
확장 프로그램 스크린샷
Explain to Chrome 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
ExplainToMe[1] is a service using the TextRank algorithm to summarize web articles. This chrome extension allows to use it from any page. This is especially useful on websites containing tons of links to articles, like twitter or facebook. Usage: Go to a website where you want to summarize links from, like twitter. Click the extension button and activate Explain to Chrome for this domain. Hovering links will now trigger summary. If you prefer, you can configure the extension so that summary is triggered on right click, via its context menu item. A note about permissions: I know the permissions requested are quite extensive, sorry about that. ExplainToMe does not check for redirection, which means the extension has to: if you want to summarize a bit.ly link, I have to fetch the link to see if it redirects to somewhere else, follow it, then check if it redirects somewhere else, etc. For that reason, the extension must be able to fetch any url. If you're not comfortable with that, you can review sources at https://github.com/oelmekki/explain-to-chrome , then install from sources. [1] https://explaintome.herokuapp.com/
확장 프로그램 기본 정보
이름 | |
ID | lmefmgnhjlfmcbknkemepkogmenhknae |
공식 URL | https://chromewebstore.google.com/detail/explain-to-chrome/lmefmgnhjlfmcbknkemepkogmenhknae |
설명 | Article shortener using ExplainToMe |
파일 크기 | 25.87 KB |
설치 횟수 | 12 |
현재 버전 | 1.0 |
최근 업데이트 | 2016-09-05 |
출시 날짜 | 2016-09-05 |
평점 | 1.00/5 총 2 개의 평점 |
개발자 | oelmekki |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Explain to Chrome", "version": "1.0", "manifest_version": 2, "description": "Article shortener using ExplainToMe", "background": { "persistent": false, "scripts": [ "background\/background.js" ] }, "browser_action": { "default_icon": { "38": "logo.png" }, "default_popup": "browser_action\/main.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content_script\/explainer.js", "content_script\/popup.js", "content_script\/positioner.js", "content_script\/intent_loader.js", "content_script\/utils.js", "content_script\/main.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "activeTab", "storage", "contextMenus" ], "icons": { "16": "logo.png", "48": "logo.png", "128": "logo.png" } } |