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 |
Eメール | [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" } } |