Readsy

A tool to help users read text more easily by highlighting key parts of speech

Readsy란 무엇입니까?

Readsy은(는) https://readsyapp.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A tool to help users read text more easily by highlighting key parts of speech"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Readsy parses text on webpages to determine each text item's part-of-speech and then adds user directed background highlighting or font color shading around each word based on its classification type. The aim is to allow users to skim through material faster than normal by emphasizing parts-of-speech such as nouns, verbs, and adjectives, while de-emphasizing parts-of-speech such as prepositions and conjuctions.

Users can change which parts-of-speech are highlighted, change the color of the highlights, and save their own color templates. 

Readsy does not run automatically. Instead, a floating button is added to the browser window in the top left corner which a user can click on to execute the part-of-speech parsing. This takes all the text on the page and sends it to an API which parses through all of the text and sends back a data-object containing each word and its classification. Readsy then takes this data-object, parses through the page HTML and encapsulates each text-item with the appropriate classification.                    

확장 프로그램 기본 정보

이름 Readsy Readsy
ID nopgbkabhipfhbciolfjhmkflphjfkca
공식 URL https://chromewebstore.google.com/detail/readsy/nopgbkabhipfhbciolfjhmkflphjfkca
설명 A tool to help users read text more easily by highlighting key parts of speech
파일 크기 146 KB
설치 횟수 832
현재 버전 1.0.5
최근 업데이트 2022-10-17
출시 날짜 2022-10-14
평점 4.25/5 총 4 개의 평점
개발자 https://readsyapp.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://readsyapp.com
도움말 페이지 URL https://readsyapp.com/contact-us
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Readsy",
    "description": "A tool to help users read text more easily by highlighting key parts of speech",
    "version": "1.0.5",
    "icons": {
        "16": "\/images\/logo_16.png",
        "48": "\/images\/logo_48.png",
        "128": "\/images\/logo_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/logo_16.png",
            "48": "\/images\/logo_48.png",
            "128": "\/images\/logo_128.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "externally_connectable": {
        "ids": [
            "*"
        ],
        "matches": [
            "https:\/\/www.readsyapp.com\/*",
            "http:\/\/readsyapp.com\/*",
            "https:\/\/readsyapp.com\/*",
            "https:\/\/readsy.app\/*",
            "https:\/\/www.readsy.app\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "popup.html",
                "\/images\/logo_pic.png",
                "\/images\/cog.svg",
                "\/images\/xcircle.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}