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 to use columns of a more readable width. Studies suggest that it's easier and faster to read text if the text is presented in narrow columns. The growth of full width browsing on wide screen monitors plays directly against this. Add this extension to make it easy to reformat the text into something manageable.
معلومات أساسية عن التمديد
الاسم | Text into Multiple Columns |
ID | nhlhdcjekkcenhfdhohihhoocnkgbfeb |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/text-into-multiple-column/nhlhdcjekkcenhfdhohihhoocnkgbfeb |
الوصف | Reformats selected text to use columns of a more readable width. |
حجم الملف | 421 KB |
عدد التثبيتات | 149 |
النسخة الحالية | 0.9.4 |
آخر تحديث | 2015-05-26 |
تاريخ النشر | 2015-05-26 |
تقييم | 3.60/5 مجموع تقييمات 10 |
المطور | dharris |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | 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." } } |