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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Breakup
قم بتنزيل ملفات الامتداد Breakup بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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" } } |