Readsy

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

Readsy là gì?

Readsy là một tiện ích mở rộng Chrome được phát triển bởi https://readsyapp.com, và tính năng chính của nó là "A tool to help users read text more easily by highlighting key parts of speech".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Readsy

Tải xuống các tệp mở rộng Readsy dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Readsy Readsy
ID nopgbkabhipfhbciolfjhmkflphjfkca
URL Chính Thức https://chromewebstore.google.com/detail/readsy/nopgbkabhipfhbciolfjhmkflphjfkca
Mô tả A tool to help users read text more easily by highlighting key parts of speech
Kích Thước Tệp 146 KB
Số Lần Cài Đặt 832
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2022-10-17
Ngày Phát Hành 2022-10-14
Đánh Giá 4.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://readsyapp.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://readsyapp.com
URL Trang Trợ Giúp https://readsyapp.com/contact-us
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}