ShortMe

ShortMe Chrome Extension

ShortMe란 무엇입니까?

ShortMe은(는) Shortme에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "ShortMe Chrome Extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

ShortMe 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        AI-powered reading assistant that summarizes text, so you can read the short version and then decide even it worse your time or not. Automatically summarize documents with ShortMe extension. Extension generates automatic text summaries that rival human authors. It is capable of using its own words and sentences with artificial intelligence, understanding the meaning of text you feed it. 

Ideal for anyone trying to make sense of large volumes text, condensing it to bite-sized material..

Indispensable for students, teachers, corporate documentation personnel, and content professionals, to save time and money.

Chrome extension which allows you to turn any lengthy article into short bite-sized summary

Our Chrome extension to produce summaries of news articles. 

How it works:

1. Scrape Article heading and body from the current active tab using jQuery.

2. Pre-process the body by removing stop words and stemming words using the AI algorithm.

3. Produce an array of sentence which will make up nodes in the graph.

4. Produce the graph using TF-IDF values of the sentences and the cosine similarity as the weight between nodes.

5. Run the graph through Google's PageRank algorthim.

6. Choose the highest ranking nodes to produce a summary.

Summarizer will save you the time-consuming pain of reading long articles and comments.  On any website, you can select a long, boring article, right-click and summarise it in a few sentences!

Increase your research productivity with real-time article summarization. Ideal for news and blogs.

We designed AI-Powered Text Insights with simplicity in mind. It is compatible with almost all text, regardless of source, including web apps such as Trello or Slack, social networks such as Facebook or Linkedin, review sites such as Tripadvisor or Yelp, online e-mail services such as Gmail, and much more. 

This summarizer stands out from others by focusing on the writer's choice of words to extract their most important points while filtering out weak arguments, speculation and asides.
We value the trust our customers put in us to keep their information safe and secure.

 Speed up your SEO routine with our SEO extension.                    

확장 프로그램 기본 정보

이름 ShortMe ShortMe
ID nlcnfpbbappbnebnhgeinbbadhkmcfik
공식 URL https://chromewebstore.google.com/detail/shortme/nlcnfpbbappbnebnhgeinbbadhkmcfik
설명 ShortMe Chrome Extension
파일 크기 34.75 KB
설치 횟수 165
현재 버전 1.0
최근 업데이트 2022-06-08
출시 날짜 2022-04-29
평점 5.00/5 총 23 개의 평점
개발자 Shortme
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://shortme.site/
도움말 페이지 URL https://shortme.site/
개인정보 보호 정책 페이지 URL https://shortme.site/site/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ShortMe",
    "description": "ShortMe Chrome Extension",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_title": "ShortMe",
        "default_icon": "icon.png",
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab"
    ]
}