Case Cat

A text transformer extension.

What is Case Cat?

Case Cat is a Chrome extension developed by Austen Morgan, and its main feature is "A text transformer extension.".

Extension Screenshots

screenshot

Download Case Cat Extension CRX File

Download Case Cat extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        𝗨𝘀𝗮𝗴𝗲

1. Highlight some text and right click on it.
2. Hover over 'Transform Text' in the menu and choose a format.
3. The transformed text is copied to your clipboard. Optionally, Case Cat will attempt to replace the selected text on the page.

☝️ Text replacement works well in text boxes, but can be inconsistent elsewhere.

𝗙𝗼𝗿𝗺𝗮𝘁𝘀

Prose
---------
Sentence: Fluffy feet
Title: Fluffy Feet
Upper: FLUFFY FEET
Lower: fluffy feet
Random  fluFFY fEeT

Code
---------
Camel:    fluffyFeet 
Constant: FLUFFY_FEET
Dot:      fluffy.feet
Header:   Fluffy-Feet
Param:    fluffy-feet
Path:     fluffy/feet
Snake:    fluffy_feet

Utility
---------
Base64:     Rmx1ZmZ5IGZlZXQ=
URI Encode: Fluffy%20feet   

Unicode
---------
Bold:    𝗙𝗹𝘂𝗳𝗳𝘆 𝗳𝗲𝗲𝘁
Italic:  𝘍𝘭𝘶𝘧𝘧𝘺 𝘧𝘦𝘦𝘵
Script:  ℱ𝓁𝓊𝒻𝒻𝓎 𝒻ℯℯ𝓉
Fraktur: 𝔉𝔩𝔲𝔣𝔣𝔶 𝔣𝔢𝔢𝔱
Circle:  Ⓕⓛⓤⓕⓕⓨ ⓕⓔⓔⓣ
Square:  🄵🄻🅄🄵🄵🅈 🄵🄴🄴🅃
Zalgo:  F̧͉̪̉̆ͭͬ́ͯͤ͗͟l͍͖͓̖̟ͯ̀u̢̺̭͕̰͛̎͑̂̌ḟ͚̳̮̦͖ͣ̌̒͊ͧ͑ͭͅͅf̜͙̄͆ͮ͂ͣ̊y̼̲͓̬̠̑̎ͦ̔͂̍ͤ̀ ̪͈͍͎͍͚̺ͪ̂̒͡f̷̘̪̳̞̩͗ͯ̋ͥ̒ͭe̳͔̮͍̝̺̤̱̅̈́e̡̱̫̬̬͕̼͕̓̀́̂͋͋͌͊͢t̼̭̟̥͓̄͗ͬ̊ͮ                    

Extension Basic Information

Name Case Cat Case Cat
ID lglonldeanebhiaeocgeifacebknejjp
Official URL https://chromewebstore.google.com/detail/case-cat/lglonldeanebhiaeocgeifacebknejjp
Description A text transformer extension.
File Size 30.76 KB
Installation Count 1,651
Current Version 2.0.0
Last Updated 2023-01-05
Publish Date 2018-07-03
Rating 3.15/5 Total 13 Ratings
Developer Austen Morgan
Email [email protected]
Payment Type free
Extension Website https://github.com/austencm/case-cat
Help Page URL https://github.com/austencm/case-cat/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "homepage_url": "https:\/\/github.com\/austencm\/case-cat",
    "version": "2.0.0",
    "manifest_version": 3,
    "default_locale": "en",
    "permissions": [
        "activeTab",
        "scripting",
        "clipboardRead",
        "clipboardWrite",
        "contextMenus",
        "storage"
    ],
    "incognito": "split",
    "icons": {
        "128": "images\/icon-128.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png"
        },
        "default_title": "Options",
        "default_popup": "options.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html"
    }
}