Breakup

Breaks up walls of text into readable paragraphs, applies a different font and colouring.

Breakup là gì?

Breakup là một tiện ích mở rộng Chrome được phát triển bởi Playwrite, và tính năng chính của nó là "Breaks up walls of text into readable paragraphs, applies a different font and colouring.".

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

screenshot

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

Tải xuống các tệp mở rộng Breakup 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

                        Breakup is a simple Chrome extension that attempts to reformat text elements on webpages so they are more readable.

Formatting options include:
- Changing the font to a web-safe version;
- Changing the size of the font;
- Using a "dark theme" to provide more contrast between background and text.

It is designed to work with Reddit, however, it may work on other websites, depending on how their elements are styled.

To use the extension, right click on an element and select "Break up text" from the context menu.                    

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

Tên Breakup Breakup
ID janccjlmbelkhnffmbfimnklelkdfcoh
URL Chính Thức https://chromewebstore.google.com/detail/breakup/janccjlmbelkhnffmbfimnklelkdfcoh
Mô tả Breaks up walls of text into readable paragraphs, applies a different font and colouring.
Kích Thước Tệp 111 KB
Số Lần Cài Đặt 199
Phiên Bản Hiện Tại 1.11
Cập Nhật Lần Cuối 2014-09-22
Ngày Phát Hành 2014-09-22
Đánh Giá 4.50/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Playwrite
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.theplaywrite.com
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Breakup",
    "description": "Breaks up walls of text into readable paragraphs, applies a different font and colouring.",
    "version": "1.11",
    "options_page": "options.html",
    "homepage_url": "http:\/\/theplaywrite.com",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "dom.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}