Breakup

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

Breakup란 무엇입니까?

Breakup은(는) Playwrite에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Breaks up walls of text into readable paragraphs, applies a different font and colouring."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Breakup Breakup
ID janccjlmbelkhnffmbfimnklelkdfcoh
공식 URL https://chromewebstore.google.com/detail/breakup/janccjlmbelkhnffmbfimnklelkdfcoh
설명 Breaks up walls of text into readable paragraphs, applies a different font and colouring.
파일 크기 111 KB
설치 횟수 199
현재 버전 1.11
최근 업데이트 2014-09-22
출시 날짜 2014-09-22
평점 4.50/5 총 8 개의 평점
개발자 Playwrite
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.theplaywrite.com
지원되는 언어 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"
    }
}