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文件

下載Breakup擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}