Text Tools

Collection of small & convenient TEXT tools.

Vad är Text Tools?

Text Tools är en Chrome-tillägg utvecklad av https://smalldatatools.com, och dess huvudfunktion är "Collection of small & convenient TEXT tools.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Text Tools-förlängningens CRX-fil

Ladda ner Text Tools-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

                        Sometimes you need to finish some simple tasks on text processing: change the case of free text, reverse a string, remove duplicate lines, or encode / hash text data. This extension can help you get them done easily. 

Just paste what you want to process, and click on start button, then wait for the result to come out. It is fast and effective! 

25 functions are available for now and more will be added to the extension in a regular basis. 

- Lower Case: converts text to lowercase
- Upper Case: converts text to uppercase
- Title Case:  capitalizes first character of each word
- Count Characters: returns the number of characters in text
- Count Words: returns the number of words in text
- Count Lines: returns the number of lines in text
- Character Frequency: returns character frequency in descending order
- Word Frequency: returns word frequency in descending order
- Reverse: returns text with its characters in the reverse order
- Shuffle: returns text with its characters in a randomized order 
- Trim Line Start: removes whitespace from the beginning of each line
- Trim Line End: removes whitespace from the end of each line
- Trim Line: removes whitespace from both ends of each line
- Add Line Number: counts lines and add the number to each line
- Remove Empty Lines: removes empty lines from text
- Remove Duplicate Lines: remove duplicates of any line from text                       
- Strip HTML: strips all html tags from text
- URL Encode: converts text to URL-encode format
- URL Decode': converts URL-encoded data to original text
- Base64 Encode: converts text to Base64-encode format
- Base64 Decode: converts Base64-encoded data to original text
- MD5 Hash: generates the MD5 hash of text
- SHA1 Hash: generates the SHA1 hash of text
- SHA256 Hash: generates the SHA256 hash of text
- SHA512 Hash: generates the SHA512 hash of text

Enjoy the ease of use offered by our text tools! Additionally, we have included the links to other tool extensions such as JSON, XML, and CSV for your selection.

CHANGELOG
==========
Version 0.1.4 - 0.1.5
- Add new features

Version 0.1.3 - 2023-04-06
- Refine plugin title and description

Version 0.1.1 & 0.1.2 - 2022-09-01
- Update plugin features and summary

Version 0.1.0 - 2021-11-10
- Add 25 handy text tools                    

Grundläggande Information om Tillägg

Namn Text Tools Text Tools
ID gldnpappladoiccncpcekahipkockdee
Officiell webbadress https://chromewebstore.google.com/detail/text-tools/gldnpappladoiccncpcekahipkockdee
Beskrivning Collection of small & convenient TEXT tools.
Filstorlek 83.32 KB
Antal Installationer 185
Aktuell Version 0.1.5
Senast Uppdaterad 2024-01-19
Publiceringsdatum 2021-11-11
Utvecklare https://smalldatatools.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.smalldatatools.com
Hjälpsida URL https://www.smalldatatools.com/contact-us.php
URL till Sekretesspolicy Sidan https://www.smalldatatools.com/privacy-policy.php
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Text Tools",
    "version": "0.1.5",
    "description": "Collection of small & convenient TEXT tools.",
    "action": {
        "default_icon": "images\/logo.png",
        "default_title": "Text Tools",
        "default_popup": "index.html"
    },
    "icons": {
        "16": "images\/logo.png",
        "48": "images\/logo.png",
        "128": "images\/logo.png"
    },
    "permissions": [
        "storage"
    ],
    "offline_enabled": true,
    "manifest_version": 3
}