Resoomer
Go to the main ideas in your articles online, summarize them in 1 Click
Resoomer란 무엇입니까?
Resoomer은(는) https://resoomer.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Go to the main ideas in your articles online, summarize them in 1 Click"입니다.
확장 프로그램 스크린샷
Resoomer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Get the essential ! Resoomer is a chrome extension for summarize your articles online in 500 words : he resumes the ideas and important facts from your argumentative texts. ★ Fast Loading ★ Simplified page ★ Summary text ★ Easy to use ★ Summarizer for Wikipedia How does it work ? When you are on your article, click on the extension icon for get the summary of your article.
확장 프로그램 기본 정보
이름 | Resoomer |
ID | dojncllhekcfenhdnddlihekcodcming |
공식 URL | https://chromewebstore.google.com/detail/resoomer/dojncllhekcfenhdnddlihekcodcming |
설명 | Go to the main ideas in your articles online, summarize them in 1 Click |
파일 크기 | 1.41 MB |
설치 횟수 | 38,047 |
현재 버전 | 2 |
최근 업데이트 | 2022-02-03 |
출시 날짜 | 2020-03-30 |
평점 | 3.65/5 총 26 개의 평점 |
개발자 | https://resoomer.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://resoomer.com/en/ |
도움말 페이지 URL | https://resoomer.com/en/help/ |
개인정보 보호 정책 페이지 URL | https://resoomer.com/en/terms |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Resoomer", "version": "2", "manifest_version": 2, "description": "Go to the main ideas in your articles online, summarize them in 1 Click", "browser_action": { "default_title": "Summarize the article", "default_popup": "html\/browser_popup.html" }, "icons": { "16": "img\/16.png", "32": "img\/32.png", "48": "img\/48.png", "128": "img\/128.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "js\/lib\/jquery.min.js", "js\/background.min.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.resoomer.com\/*" ], "js": [ "js\/lib\/jquery.min.js" ] } ], "web_accessible_resources": [ "img\/*", "fonts\/*" ], "externally_connectable": { "matches": [ "*:\/\/*.resoomer.com\/*" ] } } |