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.”。
扩展截图
下载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 |
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" } } |