Text into Multiple Columns
Reformats selected text to use columns of a more readable width.
ما هو Text into Multiple Columns؟
Text into Multiple Columns هو إضافة Chrome تم تطويرها بواسطة dharris، والميزة الرئيسية لها هي "Reformats selected text to use columns of a more readable width.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Text into Multiple Columns
قم بتنزيل ملفات الامتداد Text into Multiple Columns بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Reformats selected text into lines of a more readable line length. The text is kept in the context of the page -- with images, logos, etc. Click on a paragraph or select text and then click the icon to split the text.
معلومات أساسية عن التمديد
الاسم | Text into Multiple Columns |
ID | dhhbngmbgcjkdfmdnbjpocafoednnhfj |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/text-into-multiple-column/dhhbngmbgcjkdfmdnbjpocafoednnhfj |
الوصف | Reformats selected text to use columns of a more readable width. |
حجم الملف | 421 KB |
عدد التثبيتات | 192 |
النسخة الحالية | 0.9.4 |
آخر تحديث | 2017-03-06 |
تاريخ النشر | 2017-03-06 |
تقييم | 2.82/5 مجموع تقييمات 11 |
المطور | dharris |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/dougharris/text-columns |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Text into Multiple Columns", "version": "0.9.4", "manifest_version": 2, "description": "Reformats selected text to use columns of a more readable width.", "content_scripts": [ { "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "text-columns.js" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "cols.png", "default_title": "Display selected text in multiple columns." } } |