Breakup

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

Breakupคืออะไร?

Breakup เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Playwrite และคุณลักษณะหลักของมันคือ "Breaks up walls of text into readable paragraphs, applies a different font and colouring."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Breakup

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}