Text into Multiple Columns
Reformats selected text to use columns of a more readable width.
Vad är Text into Multiple Columns?
Text into Multiple Columns är en Chrome-tillägg utvecklad av dharris, och dess huvudfunktion är "Reformats selected text to use columns of a more readable width.".
Tilläggsskärmbilder
Ladda ner Text into Multiple Columns-förlängningens CRX-fil
Ladda ner Text into Multiple Columns-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | dhhbngmbgcjkdfmdnbjpocafoednnhfj |
| Officiell webbadress | https://chromewebstore.google.com/detail/text-into-multiple-column/dhhbngmbgcjkdfmdnbjpocafoednnhfj |
| Beskrivning | Reformats selected text to use columns of a more readable width. |
| Filstorlek | 421 KB |
| Antal Installationer | 192 |
| Aktuell Version | 0.9.4 |
| Senast Uppdaterad | 2017-03-06 |
| Publiceringsdatum | 2017-03-06 |
| Betyg | 2.82/5 Totalt 11 Betyg |
| Utvecklare | dharris |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/dougharris/text-columns |
| Stödda Språk | 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."
}
} | |