Text into Multiple Columns
Reformats selected text to use columns of a more readable width.
Qu'est-ce que Text into Multiple Columns ?
Text into Multiple Columns est une extension Chrome développée par dharris, et sa fonction principale est "Reformats selected text to use columns of a more readable width.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Text into Multiple Columns
Téléchargez les fichiers d'extension Text into Multiple Columns au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Text into Multiple Columns |
ID | dhhbngmbgcjkdfmdnbjpocafoednnhfj |
URL Officiel | https://chromewebstore.google.com/detail/text-into-multiple-column/dhhbngmbgcjkdfmdnbjpocafoednnhfj |
Description | Reformats selected text to use columns of a more readable width. |
Taille du Fichier | 421 KB |
Nombre d'Installations | 192 |
Version Actuelle | 0.9.4 |
Dernière Mise à Jour | 2017-03-06 |
Date de Publication | 2017-03-06 |
Évaluation | 2.82/5 Total 11 Évaluations |
Développeur | dharris |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/dougharris/text-columns |
Langues Prises en Charge | 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." } } |